🎨 Auto-format GDScript code

Automated formatting applied by tools/run_development.py

🤖 Generated by Gitea Actions
Workflow: Continuous Integration
Run: http://server:3000/nett00n/skelly/actions/runs/90
This commit is contained in:
Gitea Actions
2025-10-01 11:05:19 +00:00
parent 3b8da89ad5
commit 1f1c394587
28 changed files with 655 additions and 1945 deletions

View File

@@ -22,9 +22,7 @@ func _setup_splash_screen_connection() -> void:
# Try to find SplashScreen node
splash_screen = get_node_or_null("SplashScreen")
if not splash_screen:
DebugManager.log_warn(
"SplashScreen node not found, trying alternative methods", "Main"
)
DebugManager.log_warn("SplashScreen node not found, trying alternative methods", "Main")
# Try to find by class or group
var splash_nodes = get_tree().get_nodes_in_group("localizable")
for node in splash_nodes:
@@ -33,15 +31,11 @@ func _setup_splash_screen_connection() -> void:
break
if splash_screen:
DebugManager.log_debug(
"SplashScreen node found: %s" % splash_screen.name, "Main"
)
DebugManager.log_debug("SplashScreen node found: %s" % splash_screen.name, "Main")
# Try connecting to the signal if it exists
if splash_screen.has_signal("confirm_pressed"):
splash_screen.confirm_pressed.connect(_on_confirm_pressed)
DebugManager.log_debug(
"Connected to confirm_pressed signal", "Main"
)
DebugManager.log_debug("Connected to confirm_pressed signal", "Main")
else:
# Fallback: use input handling directly on the main scene
DebugManager.log_warn("Using fallback input handling", "Main")