chore: install gut quality suite

This commit is contained in:
Rijad Zuzo
2026-07-10 15:59:46 +02:00
parent ce8f71082b
commit 2ed93de6d1
266 changed files with 23057 additions and 21 deletions
+30
View File
@@ -0,0 +1,30 @@
@tool
extends AcceptDialog
var should_continue = false
var _check_for_update_ctrl = null
signal closed
func _ready():
add_cancel_button("Cancel Loading GUT")
func _on_confirmed() -> void:
should_continue = true
closed.emit.call_deferred()
func _on_canceled() -> void:
should_continue = false
closed.emit.call_deferred()
func _on_close_requested() -> void:
should_continue = false
closed.emit.call_deferred()
func set_check_for_update_control(ctrl):
_check_for_update_ctrl = ctrl
add_child(ctrl)