SegmentRoute

@Serializable
data class SegmentRoute(val entryLocation: String, val exitLocation: String, val waypoints: List<LayoutPoint> = emptyList())(source)

One conveyor segment's authored route (10.5, §6.7): the belt from entryLocation to exitLocation runs straight through any waypoints in order. Anchors resolve to placed station/location positions; an empty waypoints list ⇒ a straight entry→exit belt (today's behavior).

Constructors

Link copied to clipboard
constructor(entryLocation: String, exitLocation: String, waypoints: List<LayoutPoint> = emptyList())

Properties

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