add page flip

This commit is contained in:
2026-06-29 15:55:01 +02:00
parent d0d052f65b
commit 9da7b074d4
46 changed files with 8671 additions and 103 deletions

View File

@@ -0,0 +1,14 @@
extends Control
signal manage_pageflip(give_control: bool)
func _ready() -> void:
manage_pageflip.connect(_on_manage_pageflip)
func _on_manage_pageflip(give_control: bool) -> void:
var tweens = find_children("*", "ContainerTween", true, false)
for tween in tweens:
if give_control:
tween.start_tween()
else:
tween.stop_tween()