|
|
|
@@ -293,6 +293,16 @@ function makeBuildings() { |
|
|
|
} |
|
|
|
] |
|
|
|
|
|
|
|
const dataRooms = [ |
|
|
|
{ |
|
|
|
name: "Kitchen", |
|
|
|
sides: { |
|
|
|
"Front": { height: math.unit(2.621997833251953, "meters") }, |
|
|
|
"Top": { height: math.unit(2.6049766540527344, "meters") } |
|
|
|
} |
|
|
|
} |
|
|
|
] |
|
|
|
|
|
|
|
results.push({ |
|
|
|
name: "Houses", |
|
|
|
constructor: () => makeAutoVehicleGroup( |
|
|
|
@@ -302,6 +312,15 @@ function makeBuildings() { |
|
|
|
) |
|
|
|
}) |
|
|
|
|
|
|
|
results.push({ |
|
|
|
name: "Rooms", |
|
|
|
constructor: () => makeAutoVehicleGroup( |
|
|
|
dataRooms, |
|
|
|
"Rooms", |
|
|
|
"buildings" |
|
|
|
) |
|
|
|
}) |
|
|
|
|
|
|
|
results.sort((b1, b2) => { |
|
|
|
e1 = b1.constructor(); |
|
|
|
e2 = b2.constructor(); |
|
|
|
|