Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2021-11-04 22:23:36 -04:00
9 changed files with 18 additions and 19 deletions

View File

@@ -86,7 +86,7 @@ public class Block extends UnlockableContent{
public boolean solid;
/** whether this block CAN be solid. */
public boolean solidifes;
/** whether this is rotateable */
/** whether this is rotatable */
public boolean rotate;
/** number of different variant regions to use */
public int variants = 0;

View File

@@ -153,6 +153,11 @@ public class StackConveyor extends Block implements Autotiler{
Draw.z(Layer.block - 0.15f);
super.drawCracks();
}
@Override
public void payloadDraw(){
Draw.rect(block.fullIcon, x, y);
}
@Override
public void onProximityUpdate(){

View File

@@ -80,6 +80,7 @@ public class BuildPayload implements Payload{
@Override
public void set(float x, float y, float rotation){
build.set(x, y);
build.payloadRotation = rotation;
}
@Override