11 lines
155 B
GDScript
11 lines
155 B
GDScript
extends Node
|
|
|
|
|
|
func play_animation_sound(animation):
|
|
#TODO
|
|
print("Playing sound for animation: ", animation)
|
|
|
|
|
|
func play_sfx(sfx: String) -> void:
|
|
pass
|