This commit is contained in:
m.cirafisi
2026-07-09 22:14:29 +02:00
parent f61668c626
commit 53e4afa367
10 changed files with 102 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
extends "res://core/game_menu/page_interactive.gd"
@onready var coming_soon_texture = $%ComingSoonTexture
func on_page_opened() -> void:
var anim = coming_soon_texture.texture
anim.current_frame = 0
anim.pause = false
func on_page_closed() -> void:
var anim = coming_soon_texture.texture as AnimatedTexture
anim.pause = true
anim.current_frame = 0