mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-16 18:58:01 +07:00
Functional sorting
This commit is contained in:
@ -185,6 +185,8 @@ public class BlockRenderer implements Disposable{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
requests.clear();
|
||||||
|
|
||||||
int minx = Math.max(avgx - rangex - expandr, 0);
|
int minx = Math.max(avgx - rangex - expandr, 0);
|
||||||
int miny = Math.max(avgy - rangey - expandr, 0);
|
int miny = Math.max(avgy - rangey - expandr, 0);
|
||||||
int maxx = Math.min(world.width() - 1, avgx + rangex + expandr);
|
int maxx = Math.min(world.width() - 1, avgx + rangex + expandr);
|
||||||
|
@ -56,7 +56,7 @@ public class PayloadConveyor extends Block{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class MassConveyorEntity extends TileEntity{
|
public class PayloadConveyorEntity extends TileEntity{
|
||||||
public @Nullable Payload item;
|
public @Nullable Payload item;
|
||||||
public float progress, itemRotation, animation;
|
public float progress, itemRotation, animation;
|
||||||
public @Nullable Tilec next;
|
public @Nullable Tilec next;
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
org.gradle.daemon=true
|
org.gradle.daemon=true
|
||||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||||
archash=ea82048b8e19cab088c1adff13e631599469ad12
|
archash=fc9a0ba82bb8e6c3a1640b57622b1ed6a1c1f9fe
|
||||||
|
Reference in New Issue
Block a user