v0.6.3: fixed variosu bugs with fog of war and horn of plenty

This commit is contained in:
Evan Debenham
2018-01-20 00:04:30 -05:00
parent 869c17be41
commit 0182bae2a0
3 changed files with 13 additions and 22 deletions

View File

@@ -87,29 +87,17 @@ public class TextureCache {
}
//creates a smarttexture backed by a native intbuffer, not a bitmap.
//This is much faster is the texture needs to be frequently edited.
//texture is all black by default
public static SmartTexture createBufferTex( String key, int w, int h ){
key += "w" + w + "h" + h;
if (all.containsKey( key )){
return all.get( key );
} else {
BufferTexture tx = new BufferTexture(w, h);
all.put( key, tx);
return tx;
}
}
public static void add( Object key, SmartTexture tx ) {
all.put( key, tx );
}
public static void remove( Object key ){
SmartTexture tx = all.get( key );
if (tx != null){
all.remove(key);
tx.delete();
}
}
public static SmartTexture get( Object src ) {