slendosaur/WikiJam/Player/Footsteps.gd
2019-11-23 14:49:20 +01:00

11 lines
131 B
GDScript

extends Spatial
onready var steps = [
get_node("Footstep")
]
func play_footstep():
#Logger.trace("Footstep")
steps[0].play()