Interface Sounds

Add sounds to user interface elements in a Godot scene.

1. Create sound effects

2. Add SFX to Godot

Before:

# func _on_button_down():
#	$ClickSound.play()

After:

func _on_button_down():
	$ClickSound.play()

3. Documentation

Resources