Fixed material default value loading
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8045 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
75b320b7d6
commit
b86b658c93
@ -180,7 +180,7 @@ public class J3MLoader implements AssetLoader {
|
||||
if (split.length != 1){
|
||||
throw new IOException("Float value parameter must have 1 entry: " + value);
|
||||
}
|
||||
return Float.parseFloat(split[0]);
|
||||
return Float.parseFloat(split[0]);
|
||||
case Vector2:
|
||||
if (split.length != 2){
|
||||
throw new IOException("Vector2 value parameter must have 2 entries: " + value);
|
||||
@ -234,7 +234,7 @@ public class J3MLoader implements AssetLoader {
|
||||
throw new IOException("Parameter statement syntax incorrect");
|
||||
}
|
||||
statement = split[0].trim();
|
||||
defaultVal = split[1].trim();
|
||||
defaultVal = split[1].trim();
|
||||
}
|
||||
|
||||
// Parse ffbinding
|
||||
@ -269,7 +269,7 @@ public class J3MLoader implements AssetLoader {
|
||||
|
||||
Object defaultValObj = null;
|
||||
if (defaultVal != null){
|
||||
readValue(type, defaultVal);
|
||||
defaultValObj = readValue(type, defaultVal);
|
||||
}
|
||||
|
||||
materialDef.addMaterialParam(type, name, defaultValObj, ffBinding);
|
||||
|
Loading…
x
Reference in New Issue
Block a user