progress (purge)
This commit is contained in:
@@ -5,21 +5,6 @@ import java.lang.annotation.*;
|
|||||||
public class Annotations{
|
public class Annotations{
|
||||||
//region entity interfaces
|
//region entity interfaces
|
||||||
|
|
||||||
public enum DrawLayer{
|
|
||||||
floor,
|
|
||||||
floorOver,
|
|
||||||
groundShadows,
|
|
||||||
groundUnder,
|
|
||||||
ground,
|
|
||||||
flyingShadows,
|
|
||||||
flying,
|
|
||||||
bullets,
|
|
||||||
effects,
|
|
||||||
overlays,
|
|
||||||
names,
|
|
||||||
weather
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Indicates that a method overrides other methods. */
|
/** Indicates that a method overrides other methods. */
|
||||||
@Target({ElementType.METHOD})
|
@Target({ElementType.METHOD})
|
||||||
@Retention(RetentionPolicy.SOURCE)
|
@Retention(RetentionPolicy.SOURCE)
|
||||||
|
|||||||
@@ -615,12 +615,6 @@ abstract class TileComp implements Posc, Teamc, Healthc, Tilec, Timerc, QuadTree
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void drawLayer(){
|
|
||||||
}
|
|
||||||
|
|
||||||
public void drawLayer2(){
|
|
||||||
}
|
|
||||||
|
|
||||||
public void drawCracks(){
|
public void drawCracks(){
|
||||||
if(!damaged() || block.size > Block.maxCrackSize) return;
|
if(!damaged() || block.size > Block.maxCrackSize) return;
|
||||||
int id = pos();
|
int id = pos();
|
||||||
|
|||||||
@@ -89,10 +89,6 @@ public class Block extends UnlockableContent{
|
|||||||
public CacheLayer cacheLayer = CacheLayer.normal;
|
public CacheLayer cacheLayer = CacheLayer.normal;
|
||||||
/** Special flag; if false, floor will be drawn under this block even if it is cached. */
|
/** Special flag; if false, floor will be drawn under this block even if it is cached. */
|
||||||
public boolean fillsTile = true;
|
public boolean fillsTile = true;
|
||||||
/** Layer to draw extra stuff on. */
|
|
||||||
public Layer layer = null;
|
|
||||||
/** Extra layer to draw extra extra stuff on. */
|
|
||||||
public Layer layer2 = null;
|
|
||||||
/** whether this block can be replaced in all cases */
|
/** whether this block can be replaced in all cases */
|
||||||
public boolean alwaysReplace = false;
|
public boolean alwaysReplace = false;
|
||||||
/** The block group. Unless {@link #canReplace} is overriden, blocks in the same group can replace each other. */
|
/** The block group. Unless {@link #canReplace} is overriden, blocks in the same group can replace each other. */
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
org.gradle.daemon=true
|
org.gradle.daemon=true
|
||||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||||
archash=87ff7abf2af82712cc428c377833d83259d30f72
|
archash=67f230afedd76d2d12ba3bb3e07116f8f0edd526
|
||||||
|
|||||||
Reference in New Issue
Block a user