GraphState
data class GraphState(val behaviorValues: Map<BehaviorID, Any?>, val nodeValues: Map<NodeID, Any?>, val children: Map<NodeID, Collection<NodeID>>)(source)
Data structure to hold on to a "snapshot" of the current state of the timeline so that previous states can be restored.
Constructors
Link copied to clipboard
constructor(behaviorValues: Map<BehaviorID, Any?>, nodeValues: Map<NodeID, Any?>, children: Map<NodeID, Collection<NodeID>>)