|
|
@ -749,11 +749,16 @@ public class TextureHelper extends AbstractBlenderHelper { |
|
|
|
try { |
|
|
|
try { |
|
|
|
TextureKey key = new TextureKey(assetName); |
|
|
|
TextureKey key = new TextureKey(assetName); |
|
|
|
key.setAsCube(false); |
|
|
|
key.setAsCube(false); |
|
|
|
|
|
|
|
// TODO: gather from
|
|
|
|
|
|
|
|
key.setFlipY(true); |
|
|
|
|
|
|
|
key.setGenerateMips(true); |
|
|
|
AssetInfo info = assetManager.locateAsset(key); |
|
|
|
AssetInfo info = assetManager.locateAsset(key); |
|
|
|
if (info != null) { |
|
|
|
if (info != null) { |
|
|
|
Texture texture = assetManager.loadTexture(key); |
|
|
|
Texture texture = assetManager.loadTexture(key); |
|
|
|
result = texture; |
|
|
|
result = texture; |
|
|
|
//if texture is found return it;
|
|
|
|
// Set key explicitly here if other ways fail
|
|
|
|
|
|
|
|
texture.setKey(key); |
|
|
|
|
|
|
|
// If texture is found return it;
|
|
|
|
return result; |
|
|
|
return result; |
|
|
|
} |
|
|
|
} |
|
|
|
} catch (AssetNotFoundException e) { |
|
|
|
} catch (AssetNotFoundException e) { |
|
|
|