OmnichordGodot/scripts/StopController.gd

14 lines
300 B
GDScript3
Raw Normal View History

2024-06-26 23:49:24 -03:00
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()