SelectCommand

class SelectCommand @JvmOverloads constructor(command: Supplier<Command>, val requirements: Set<Component> = emptySet()) : Command

A command that runs the specified command every time it is scheduled.

Constructors

Link copied to clipboard
constructor(command: Supplier<Command>, vararg requirements: Component)
constructor(command: Supplier<Command>, requirements: Set<Component> = emptySet())

Properties

Link copied to clipboard
open override val isInterruptable: Boolean

Whether this command can be interrupted by another command.

Link copied to clipboard
open override val requirements: Set<Component>

The set of components that this command uses.

Functions

Link copied to clipboard
open override fun end(interrupted: Boolean)

Runs once when this command finishes or is interrupted.

Link copied to clipboard
open override fun execute()

Runs repeatedly until isFinished returns true.

Link copied to clipboard
open override fun init()

Runs once when first scheduled.

Link copied to clipboard
open override fun isFinished(): Boolean

Returns whether this command is finished.