using Godot;
namespace Rokojori
{
[Tool]
[GlobalClass ]
public partial class SetLabelText : Action
[Export]
public Label3D label;
public string text;
protected override void _OnTrigger()
label.Text = text;
}