mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-30 23:19:49 +00:00
Fixed issue where splash screen was appearing even though it should not
This commit is contained in:
parent
02b91479ad
commit
f0c0176080
|
@ -172,12 +172,12 @@ func _ready() -> void:
|
|||
|
||||
if not Global.config_cache.has_section_key("preferences", "startup"):
|
||||
Global.config_cache.set_value("preferences", "startup", true)
|
||||
if not Global.config_cache.get_value("preferences", "startup"):
|
||||
$SplashDialog.hide()
|
||||
|
||||
if Global.config_cache.get_value("preferences", "startup"):
|
||||
# Wait for the window to adjust itself, so the popup is correctly centered
|
||||
yield(get_tree().create_timer(0.01), "timeout")
|
||||
$SplashDialog.popup_centered() # Splash screen
|
||||
else:
|
||||
Global.can_draw = true
|
||||
|
||||
func _input(event : InputEvent) -> void:
|
||||
Global.left_cursor.position = get_global_mouse_position() + Vector2(-32, 32)
|
||||
|
|
Loading…
Reference in a new issue