Files
godot-docs/tutorials
Vladimir Garnovsky b93c71358b Correction for example C# code in 'A custom dock'
Code has two errors:
 _dock.DefaultSlot = DockSlot.LeftUl;
 _dock.AvailableLayouts = DockLayout.Horizontal | DockLayout.Floating;

Lines corrected to the proper types:

_dock.DefaultSlot = EditorDock.DockSlot.LeftUl; _dock.AvailableLayouts = EditorDock.DockLayout.Horizontal | EditorDock.DockLayout.Floating;
2026-08-20 22:20:49 +02:00
..
2026-08-04 19:34:06 +02:00
2026-01-23 00:43:06 +01:00