This commit is contained in:
2026-07-25 16:42:49 +02:00
commit a83fa69c29
25 changed files with 408 additions and 0 deletions

15
MeetingControl.cs Normal file
View File

@@ -0,0 +1,15 @@
using Godot;
public sealed partial class MeetingControlDragData : GodotObject { }
public partial class MeetingControl : PanelContainer
{
public override Variant _GetDragData(Vector2 atPosition)
{
GD.Print("CONTROL DRAG");
var copy = Duplicate() as MeetingControl;
SetDragPreview(copy);
return Variant.From(new MeetingControlDragData());
}
}