2024-12-01 17:07:41 +00:00
|
|
|
|
|
|
|
using Godot;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
|
|
|
[Tool]
|
|
|
|
[GlobalClass]
|
|
|
|
public partial class TriggerActionInEditor : Node
|
|
|
|
{
|
|
|
|
[Export]
|
2025-01-08 18:46:17 +00:00
|
|
|
public Action action;
|
2024-12-01 17:07:41 +00:00
|
|
|
|
2025-03-13 16:19:28 +00:00
|
|
|
[ExportToolButton( "Trigger")]
|
|
|
|
public Callable ExecuteButton => Callable.From( () => Action.Trigger( action ) );
|
2024-12-01 17:07:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|