mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-25 14:01:03 -08:00
parent
174e4b8632
commit
7b2b9b3988
2 changed files with 11 additions and 10 deletions
|
|
@ -38,7 +38,6 @@ public class TechTree implements ContentList{
|
|||
node(distributor);
|
||||
node(sorter, () -> {
|
||||
node(invertedSorter);
|
||||
node(message);
|
||||
node(overflowGate, () -> {
|
||||
node(underflowGate);
|
||||
});
|
||||
|
|
@ -206,19 +205,21 @@ public class TechTree implements ContentList{
|
|||
});
|
||||
|
||||
node(microProcessor, () -> {
|
||||
node(logicProcessor, () -> {
|
||||
node(hyperProcessor, () -> {
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
node(switchBlock, () -> {
|
||||
node(logicDisplay, () -> {
|
||||
node(message, () -> {
|
||||
node(logicDisplay, () -> {
|
||||
|
||||
});
|
||||
|
||||
node(memoryCell, () -> {
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
node(memoryCell, () -> {
|
||||
node(logicProcessor, () -> {
|
||||
node(hyperProcessor, () -> {
|
||||
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@ public class DesktopInput extends InputHandler{
|
|||
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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue