From d97109aa8dc5a41a9ec4335ddd35441a6c0d6e13 Mon Sep 17 00:00:00 2001 From: adtpdn Date: Fri, 24 Apr 2026 01:01:12 +0800 Subject: [PATCH] feat : minor fix, on editor bypass update --- scripts/ui/boot_screen.gd | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/ui/boot_screen.gd b/scripts/ui/boot_screen.gd index c3f1bee..007f1cb 100644 --- a/scripts/ui/boot_screen.gd +++ b/scripts/ui/boot_screen.gd @@ -45,6 +45,13 @@ func _ready() -> void: progress_label.visible = false status_label.text = "Checking versions..." + + # Instant bypass in editor — go straight to game + if OS.has_feature("editor"): + print("[BootScreen] Editor detected — bypassing update check.") + _begin_resource_load() + return + update_manager.check_for_updates() func _get_update_manager() -> Node: