BlockNode

class BlockNode(val name: String? = null, val callback: () -> Unit) : NewAnimatorNode

Constructors

Link copied to clipboard
constructor(name: String? = null, callback: () -> Unit)

Properties

Link copied to clipboard
val callback: () -> Unit
Link copied to clipboard
Link copied to clipboard
val name: String? = null

Functions

Link copied to clipboard
open override fun complete()
Link copied to clipboard
open override fun reset()
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
open override fun update(dt: TimeSpan): TimeSpan

Sets this node to the specified dt (Delta Time), returns the exceeded time of completion, 0 if completed, less than zero if not completed.