add tween plugin and refactoring UI

This commit is contained in:
2026-05-31 21:23:58 +02:00
parent eedd303faa
commit 6976cee6e1
63 changed files with 2029 additions and 490 deletions

14
core/game_menu/page.gd Normal file
View File

@@ -0,0 +1,14 @@
extends Control
class_name GameMenuPage
func show_page() -> void:
var tweens = find_children("*", "ContainerTween", true, false)
for tween in tweens:
tween.start_tween()
show()
func hide_page() -> void:
hide()