Moved everything into a file system. Links broken.

This commit is contained in:
2025-08-10 03:58:03 -04:00
parent 4e0b42eb23
commit 434216ca29
182 changed files with 1141 additions and 252 deletions

14
scripts/speech_bubble.gd Normal file
View File

@@ -0,0 +1,14 @@
class_name SpeechBubble extends Sprite2D
@onready var anim_player : AnimationPlayer = $AnimationPlayer
func try_show_speech(type : String = ""):
if type != "":
if anim_player.has_animation(type):
visible = true
anim_player.play(type)
else:
printerr("Tried to show speech bubble %s but speech bubble does not have that type!" % type)
visible = false
else:
visible = false