ActionRunner
ActionRunner is the action runner of the ActionSystem, responsible for starting, queuing, removing, and releasing actions, driven by the owner through DriveUpdate.
ActionBase
ActionBase is the abstract base class of all ActionSystem actions. Override OnStart, OnUpdate, and OnDone to implement custom actions, and control completion with SetDuration and MarkAsDone.
Default Actions
The built-in default actions of the ActionSystem - SequenceAction, ParallelAction, ParallelDelayAction, DelayAction, and DelegateAction.