OmnichordGodot/scripts/StopController.gd
2024-06-26 23:49:24 -03:00

14 lines
300 B
GDScript

extends Node
# Add asset here
var RhythmPlayer: AudioStreamPlayer
# Called when the node enters the scene tree for the first time.
func _ready():
RhythmPlayer = get_node("/root/Control/RhythmPlayer")
self.pressed.connect(button_pressed)
func button_pressed():
# Play chord
RhythmPlayer.stop()