using Godot; namespace Rokojori { [Tool][GlobalClass] public partial class PlaySound:Action { [Export] public AudioStreamPlayer player; protected override void _OnTrigger() { player.Play(); } } }