v0.6.3: fixed variosu bugs with fog of war and horn of plenty
This commit is contained in:
+1
@@ -127,6 +127,7 @@ public class HornOfPlenty extends Artifact {
|
||||
if (charge >= 15) image = ItemSpriteSheet.ARTIFACT_HORN4;
|
||||
else if (charge >= 10) image = ItemSpriteSheet.ARTIFACT_HORN3;
|
||||
else if (charge >= 5) image = ItemSpriteSheet.ARTIFACT_HORN2;
|
||||
else image = ItemSpriteSheet.ARTIFACT_HORN1;
|
||||
|
||||
updateQuickslot();
|
||||
}
|
||||
|
||||
@@ -110,7 +110,9 @@ public class FogOfWar extends Image {
|
||||
width = width2 * size;
|
||||
height = height2 * size;
|
||||
|
||||
texture( TextureCache.createBufferTex("fog", width2, height2) );
|
||||
BufferTexture tx = new BufferTexture(width2, height2);
|
||||
TextureCache.add(FogOfWar.class, tx);
|
||||
texture( tx );
|
||||
|
||||
scale.set(
|
||||
DungeonTilemap.SIZE / PIX_PER_TILE,
|
||||
@@ -342,7 +344,7 @@ public class FogOfWar extends Image {
|
||||
public void destroy() {
|
||||
super.destroy();
|
||||
if (texture != null){
|
||||
texture.delete();
|
||||
TextureCache.remove(FogOfWar.class);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user