1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Redo wire splitter / mergers

This commit is contained in:
tobspr
2020-07-27 14:25:22 +02:00
parent 94c59e0e33
commit 7341321d97
19 changed files with 843 additions and 841 deletions

View File

@@ -372,7 +372,7 @@ canvas {
}
.pressed {
transform: scale(0.95) !important;
transform: scale(0.98) !important;
animation: none !important;
}

View File

@@ -55,6 +55,7 @@
.dialogInner {
opacity: 1;
}
backdrop-filter: blur(D(3px));
}
.dialogInner {

View File

@@ -7,6 +7,7 @@ export const CHANGELOG = [
"Reworked menu UI design (by dengr1605)",
"Allow holding ALT in belt planner to reverse direction (by jakobhellermann)",
"Clear cursor when trying to pipette the same building twice (by hexy)",
"Fixed level 18 stacker bug: If you experienced it already, you know it, if not, I don't want to spoiler (by hexy)",
"Added keybinding to close menus (by isaisstillalive / Sandwichs-del)",
"Fix rare crash regarding the buildings toolbar (by isaisstillalive)",
"Fixed some phrases (by EnderDoom77)",

View File

@@ -88,7 +88,7 @@ export class MetaWireCrossingsBuilding extends MetaBuilding {
]);
entity.components.ItemEjector.setSlots([
{ pos: new Vector(0, 0), direction: enumDirection.left, layer: enumLayer.wires },
{ pos: new Vector(0, 0), direction: enumDirection.top, layer: enumLayer.wires },
{ pos: new Vector(0, 0), direction: enumDirection.right, layer: enumLayer.wires },
]);
@@ -98,7 +98,7 @@ export class MetaWireCrossingsBuilding extends MetaBuilding {
entity.components.ItemAcceptor.setSlots([
{
pos: new Vector(0, 0),
directions: [enumDirection.left],
directions: [enumDirection.top],
layer: enumLayer.wires,
},
{
@@ -109,7 +109,7 @@ export class MetaWireCrossingsBuilding extends MetaBuilding {
]);
entity.components.ItemEjector.setSlots([
{ pos: new Vector(0, 0), direction: enumDirection.top, layer: enumLayer.wires },
{ pos: new Vector(0, 0), direction: enumDirection.bottom, layer: enumLayer.wires },
]);
break;
}