@@ -38,7 +38,6 @@ public class TechTree implements ContentList{
|
|||||||
node(distributor);
|
node(distributor);
|
||||||
node(sorter, () -> {
|
node(sorter, () -> {
|
||||||
node(invertedSorter);
|
node(invertedSorter);
|
||||||
node(message);
|
|
||||||
node(overflowGate, () -> {
|
node(overflowGate, () -> {
|
||||||
node(underflowGate);
|
node(underflowGate);
|
||||||
});
|
});
|
||||||
@@ -206,13 +205,8 @@ public class TechTree implements ContentList{
|
|||||||
});
|
});
|
||||||
|
|
||||||
node(microProcessor, () -> {
|
node(microProcessor, () -> {
|
||||||
node(logicProcessor, () -> {
|
|
||||||
node(hyperProcessor, () -> {
|
|
||||||
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
node(switchBlock, () -> {
|
node(switchBlock, () -> {
|
||||||
|
node(message, () -> {
|
||||||
node(logicDisplay, () -> {
|
node(logicDisplay, () -> {
|
||||||
|
|
||||||
});
|
});
|
||||||
@@ -221,6 +215,13 @@ public class TechTree implements ContentList{
|
|||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
node(logicProcessor, () -> {
|
||||||
|
node(hyperProcessor, () -> {
|
||||||
|
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -188,7 +188,7 @@ public class DesktopInput extends InputHandler{
|
|||||||
panning = true;
|
panning = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if((Math.abs(Core.input.axis(Binding.move_x)) > 0 || Math.abs(Core.input.axis(Binding.move_y)) > 0) && (!scene.hasField())){
|
if((Math.abs(Core.input.axis(Binding.move_x)) > 0 || Math.abs(Core.input.axis(Binding.move_y)) > 0 || input.keyDown(Binding.mouse_move)) && (!scene.hasField())){
|
||||||
panning = false;
|
panning = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user