add fields to track parent tile (large tile) dimensions

This will be useful for rotating "large tiles" when I eventually get around to implementing that.
This commit is contained in:
Gered 2013-08-04 10:33:20 -04:00
parent 6199f58cf5
commit 50d8d710b5

View file

@ -39,6 +39,9 @@ public final class Tile {
public byte parentTileOffsetX; public byte parentTileOffsetX;
public byte parentTileOffsetY; public byte parentTileOffsetY;
public byte parentTileOffsetZ; public byte parentTileOffsetZ;
public byte parentTileWidth;
public byte parentTileHeight;
public byte parentTileDepth;
public int color; public int color;
public Tile() { public Tile() {
@ -77,6 +80,9 @@ public final class Tile {
this.parentTileOffsetX = other.parentTileOffsetX; this.parentTileOffsetX = other.parentTileOffsetX;
this.parentTileOffsetY = other.parentTileOffsetY; this.parentTileOffsetY = other.parentTileOffsetY;
this.parentTileOffsetZ = other.parentTileOffsetZ; this.parentTileOffsetZ = other.parentTileOffsetZ;
this.parentTileWidth = other.parentTileWidth;
this.parentTileHeight = other.parentTileHeight;
this.parentTileDepth = other.parentTileDepth;
this.color = other.color; this.color = other.color;
return this; return this;
} }