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

@@ -16,11 +16,32 @@ func _ready():
$%TextureRect.show()
else:
$%TextureRect.hide()
TweenFX.breathe(self, 1)
func _on_pressed() -> void:
if locked:
return
TweenFX.stop_all(self)
scale = Vector2.ONE
rotation = 0.0
modulate.a = 1.0
TweenFX.press_rotate(self)
func _on_mouse_entered() -> void:
if locked:
return
TweenFX.stop_all(self)
scale = Vector2.ONE
rotation = 0.0
modulate.a = 1.0
TweenFX.breathe(self, 1)
func _on_mouse_exited() -> void:
if locked:
return
TweenFX.stop_all(self)
scale = Vector2.ONE
rotation = 0.0
modulate.a = 1.0