chore(tooling): install GUT v9.6.0 test framework

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Steven Wroblewski
2026-04-17 22:33:12 +02:00
parent 257ff18a8b
commit c8fb2d959f
166 changed files with 21911 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
extends EditorDock
var _panel : Control = null
var _current_layout = -1
func _update_layout(layout):
_current_layout = layout
if(_panel != null):
if(layout == DOCK_LAYOUT_FLOATING):
_windowed_mode()
else:
_dock_mode()
# -------------
# Private
# -------------
func _windowed_mode():
_panel.show_layout_buttons(true)
func _dock_mode():
_panel.results_horiz_layout()
_panel.show_layout_buttons(false)
# -------------
# Public
# -------------
func add_bottom_panel(gut_bottom_panel):
_panel = gut_bottom_panel
# Make floating button not supported right now
add_child(_panel)
_panel.make_floating_btn.visible = false
_update_layout(_current_layout)