SequentialCommand

class SequentialCommand(isInterruptable: Boolean = true, commands: Command) : CommandGroup

A command that runs commands in sequence.

Constructors

Link copied to clipboard
constructor(vararg commands: Command)
constructor(isInterruptable: Boolean = true, 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.