fix bookmark image, loading msg

This commit is contained in:
Nordup 2024-11-27 04:19:22 +04:00
parent c858251dc8
commit 44f5bbeeb8
12 changed files with 116 additions and 19 deletions

View file

@ -0,0 +1,7 @@
extends Panel
@export var gate_events: GateEvents
func _ready() -> void:
gate_events.first_frame.connect(func(): visible = true)

View file

@ -0,0 +1,6 @@
extends TextureRect
func _ready() -> void:
var tween = create_tween().set_loops()
tween.tween_property(self, "rotation", 360, 50).from(0)