Add stacked belts to station

This commit is contained in:
hal8174 2025-04-22 23:21:01 +02:00
parent 65e2c03824
commit 59d7cf50cb
5 changed files with 85 additions and 45 deletions

View file

@ -15,6 +15,7 @@ pub struct StationSpec {
pub beltspeed: Beltspeed,
pub lanes: usize,
pub belttype: Belttype,
pub stacked: bool,
}
fn calculate_station_height(
@ -268,6 +269,7 @@ pub fn multistation(
station.lanes,
station.beltspeed,
station.belttype,
station.stacked,
);
let output_height = -b.bounding_box().min().y;