TimeCommand

class TimeCommand(execute: BiFunction<Double, Double, Boolean>, clock: NanoClock = NanoClock.system) : Command

A time-based command.

Parameters

execute

the execute function, accepting the time elapsed since initialization and the time since last update, and returning whether the command is finished.

Constructors

Link copied to clipboard
constructor(execute: BiFunction<Double, Double, Boolean>)
constructor(execute: BiFunction<Double, Double, Boolean>, clock: NanoClock = NanoClock.system)

Functions

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.