Blender TextureHelper: Make use of ImageLoader's new loadTexture capability
This commit is contained in:
parent
3cd96b2053
commit
11a647a3d4
@ -252,11 +252,8 @@ public class TextureHelper extends AbstractBlenderHelper {
|
||||
blenderContext.getInputStream().setPosition(dataFileBlock.getBlockPosition());
|
||||
|
||||
// Should the texture be flipped? It works for sinbad ..
|
||||
Image img = new ImageLoader().loadImage(blenderContext.getInputStream(), dataFileBlock.getBlockPosition(), true);
|
||||
|
||||
if (img != null) {
|
||||
result = new Texture2D(img);
|
||||
} else {
|
||||
result = new ImageLoader().loadTexture(blenderContext.getAssetManager(), blenderContext.getInputStream(), dataFileBlock.getBlockPosition(), true);
|
||||
if (result == null) {
|
||||
result = new Texture2D(PlaceholderAssets.getPlaceholderImage(blenderContext.getAssetManager()));
|
||||
LOGGER.fine("ImageLoader returned null. It probably failed to load the packed texture, using placeholder asset");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user