FunctionalCommand
A command whose properties can be defined externally. Useful for making simple inline commands or combining commands together.
Constructors
Link copied to clipboard
public FunctionalCommand FunctionalCommand(Runnable init, Runnable execute, Consumer<Boolean> end, BooleanSupplier isFinished, Boolean isInterruptable, Component requirements)
public FunctionalCommand FunctionalCommand(Runnable init, Runnable execute, Consumer<Boolean> end, BooleanSupplier isFinished, Component requirements)
public FunctionalCommand FunctionalCommand(Runnable init, Runnable execute, Consumer<Boolean> end, Component requirements)
public FunctionalCommand FunctionalCommand(Runnable init, Runnable execute, Consumer<Boolean> end, BooleanSupplier isFinished, Boolean isInterruptable, Set<Component> requirements)
public FunctionalCommand FunctionalCommand(Runnable init, Runnable execute, Consumer<Boolean> end, BooleanSupplier isFinished, Boolean isInterruptable)
public FunctionalCommand FunctionalCommand(Runnable init, Runnable execute, Consumer<Boolean> end, BooleanSupplier isFinished)
Properties
Functions
Link copied to clipboard
Runs repeatedly until isFinished returns true.
Link copied to clipboard
The set of components that this command uses.
Link copied to clipboard
Returns whether this command is finished.
Link copied to clipboard
Whether this command can be interrupted by another command.
Link copied to clipboard
Whether this command can be interrupted by another command.
Link copied to clipboard
The set of components that this command uses.