bug fix
This commit is contained in:
13
core/game_menu/page_2_right.gd
Normal file
13
core/game_menu/page_2_right.gd
Normal 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
|
||||
Reference in New Issue
Block a user