ConveyorDefined

@Serializable
@SerialName(value = "ConveyorDefined")
data class ConveyorDefined(val simTime: Double, val conveyorName: String, val anchorLocations: List<String>, val anchorCells: List<Int>) : AnimationEvent(source)

The static cell structure of a conveyor (emitted once per replication, at the conveyor's initialize). anchorLocations and anchorCells are parallel lists giving each named entry/ exit location and its cell index along the belt, so a renderer can map any cell index to a world position by interpolating between the (layout-positioned) named anchors (8G.6).

Constructors

Link copied to clipboard
constructor(simTime: Double, conveyorName: String, anchorLocations: List<String>, anchorCells: List<Int>)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val simTime: Double