Bugfix: making the importer NOT to crash when coming accross OCEAN type of generated texture (this is a new texture type).
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10815 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
517dece348
commit
23cc867e38
@ -97,6 +97,7 @@ public class TextureHelper extends AbstractBlenderHelper {
|
|||||||
public static final int TEX_DISTNOISE = 13;
|
public static final int TEX_DISTNOISE = 13;
|
||||||
public static final int TEX_POINTDENSITY = 14; // v. 25+
|
public static final int TEX_POINTDENSITY = 14; // v. 25+
|
||||||
public static final int TEX_VOXELDATA = 15; // v. 25+
|
public static final int TEX_VOXELDATA = 15; // v. 25+
|
||||||
|
public static final int TEX_OCEAN = 16; // v. 26+
|
||||||
|
|
||||||
public static final Type[] TEXCOORD_TYPES = new Type[] { Type.TexCoord, Type.TexCoord2, Type.TexCoord3, Type.TexCoord4, Type.TexCoord5, Type.TexCoord6, Type.TexCoord7, Type.TexCoord8 };
|
public static final Type[] TEXCOORD_TYPES = new Type[] { Type.TexCoord, Type.TexCoord2, Type.TexCoord3, Type.TexCoord4, Type.TexCoord5, Type.TexCoord6, Type.TexCoord7, Type.TexCoord8 };
|
||||||
|
|
||||||
@ -167,6 +168,7 @@ public class TextureHelper extends AbstractBlenderHelper {
|
|||||||
case TEX_VOXELDATA:
|
case TEX_VOXELDATA:
|
||||||
case TEX_PLUGIN:
|
case TEX_PLUGIN:
|
||||||
case TEX_ENVMAP:
|
case TEX_ENVMAP:
|
||||||
|
case TEX_OCEAN:
|
||||||
LOGGER.log(Level.WARNING, "Unsupported texture type: {0} for texture: {1}", new Object[] { type, tex.getName() });
|
LOGGER.log(Level.WARNING, "Unsupported texture type: {0} for texture: {1}", new Object[] { type, tex.getName() });
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user