Meilleure clue pour parler à bob

This commit is contained in:
Thomas
2025-03-28 16:23:12 +01:00
parent fb99561c28
commit 7a58999034
13 changed files with 608 additions and 21 deletions

10
UI/clues/bubble_clue.gd Normal file
View File

@@ -0,0 +1,10 @@
extends Sprite2D
class_name BubbleClue
func setVisible(isV: bool):
visible = isV
if isV:
$AnimationPlayer.play("move")
else:
$AnimationPlayer.stop()
$Sprite2D.setVisible(isV)