retrace/Characters/Player/Footsteps.gd
karl 32ebab464b Add logger trace when footstep sound should play
Sound is not working currently on my machine... need to test
2019-11-21 13:26:51 +01:00

11 lines
131 B
GDScript

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