2026-02-26 14:06:27 +00:00
|
|
|
|
|
|
|
|
using Godot;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2026-02-26 14:06:27 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
[Tool][GlobalClass ]
|
|
|
|
|
public partial class CancelSequenceAction : Action
|
|
|
|
|
{
|
|
|
|
|
[Export]
|
|
|
|
|
public SequenceAction sequence;
|
|
|
|
|
|
|
|
|
|
protected override void _OnTrigger()
|
|
|
|
|
{
|
|
|
|
|
sequence?.CancelAllRunning();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|