RaceCommand

class RaceCommand(isInterruptable: Boolean, commands: Command) : CommandGroup

A command that runs commands in parallel until one of them finishes.

Constructors

Link copied to clipboard
constructor(vararg commands: Command)
constructor(isInterruptable: Boolean, vararg commands: Command)

Functions

Link copied to clipboard
open override fun add(command: Command)

Adds a command to this group.

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.