ISequenceTask
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
Description
A task in acom.blamejared.crafttweaker.api.util.sequence.Sequence
. Members
isComplete(actor as T, context as SequenceContext<T, U>) as bool
Checks if this task is complete.
Parameters:
actor: T
Type: T
- The actor that is being sequenced.
Return Type:
bool
tick(actor as T, context as SequenceContext<T, U>)
Ticks this task.
A check to isComplete
should be done before ticking!.
Parameters:
actor: T
Type: T
- The actor that is being sequenced.