ConveyorInfo

@Serializable
data class ConveyorInfo(val name: String, val cellSize: Int, val accumulating: Boolean, val segments: List<SegmentInfo> = emptyList())(source)

A conveyor's structure exposed pre-run from the built ksl.modeling.entity.Conveyor (10.5a): its cellSize, whether it is accumulating, and its ordered, chained segments. Lets the editor route the belt against the stations/locations its segments connect before any run.

Constructors

Link copied to clipboard
constructor(name: String, cellSize: Int, accumulating: Boolean, segments: List<SegmentInfo> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard