Redo wire splitter / mergers
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 67 KiB |
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 226 KiB After Width: | Height: | Size: 226 KiB |
Before Width: | Height: | Size: 527 KiB After Width: | Height: | Size: 523 KiB |
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.9 KiB |
@ -372,7 +372,7 @@ canvas {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.pressed {
|
.pressed {
|
||||||
transform: scale(0.95) !important;
|
transform: scale(0.98) !important;
|
||||||
animation: none !important;
|
animation: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
.dialogInner {
|
.dialogInner {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
backdrop-filter: blur(D(3px));
|
||||||
}
|
}
|
||||||
|
|
||||||
.dialogInner {
|
.dialogInner {
|
||||||
|
@ -7,6 +7,7 @@ export const CHANGELOG = [
|
|||||||
"Reworked menu UI design (by dengr1605)",
|
"Reworked menu UI design (by dengr1605)",
|
||||||
"Allow holding ALT in belt planner to reverse direction (by jakobhellermann)",
|
"Allow holding ALT in belt planner to reverse direction (by jakobhellermann)",
|
||||||
"Clear cursor when trying to pipette the same building twice (by hexy)",
|
"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)",
|
"Added keybinding to close menus (by isaisstillalive / Sandwichs-del)",
|
||||||
"Fix rare crash regarding the buildings toolbar (by isaisstillalive)",
|
"Fix rare crash regarding the buildings toolbar (by isaisstillalive)",
|
||||||
"Fixed some phrases (by EnderDoom77)",
|
"Fixed some phrases (by EnderDoom77)",
|
||||||
|
@ -88,7 +88,7 @@ export class MetaWireCrossingsBuilding extends MetaBuilding {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
entity.components.ItemEjector.setSlots([
|
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 },
|
{ pos: new Vector(0, 0), direction: enumDirection.right, layer: enumLayer.wires },
|
||||||
]);
|
]);
|
||||||
|
|
||||||
@ -98,7 +98,7 @@ export class MetaWireCrossingsBuilding extends MetaBuilding {
|
|||||||
entity.components.ItemAcceptor.setSlots([
|
entity.components.ItemAcceptor.setSlots([
|
||||||
{
|
{
|
||||||
pos: new Vector(0, 0),
|
pos: new Vector(0, 0),
|
||||||
directions: [enumDirection.left],
|
directions: [enumDirection.top],
|
||||||
layer: enumLayer.wires,
|
layer: enumLayer.wires,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -109,7 +109,7 @@ export class MetaWireCrossingsBuilding extends MetaBuilding {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
entity.components.ItemEjector.setSlots([
|
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;
|
break;
|
||||||
}
|
}
|
||||||
|