Преглед на файлове

Fixed material default value loading

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8045 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
rem..om преди 14 години
родител
ревизия
b86b658c93
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      engine/src/core-plugins/com/jme3/material/plugins/J3MLoader.java

+ 3 - 3
engine/src/core-plugins/com/jme3/material/plugins/J3MLoader.java

@@ -180,7 +180,7 @@ public class J3MLoader implements AssetLoader {
                     if (split.length != 1){
                     if (split.length != 1){
                         throw new IOException("Float value parameter must have 1 entry: " + value);
                         throw new IOException("Float value parameter must have 1 entry: " + value);
                     }
                     }
-                    return Float.parseFloat(split[0]);
+                     return Float.parseFloat(split[0]);
                 case Vector2:
                 case Vector2:
                     if (split.length != 2){
                     if (split.length != 2){
                         throw new IOException("Vector2 value parameter must have 2 entries: " + value);
                         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");
                 throw new IOException("Parameter statement syntax incorrect");
             }
             }
             statement = split[0].trim();
             statement = split[0].trim();
-            defaultVal = split[1].trim();
+            defaultVal = split[1].trim();           
         }
         }
         
         
         // Parse ffbinding
         // Parse ffbinding
@@ -269,7 +269,7 @@ public class J3MLoader implements AssetLoader {
         
         
         Object defaultValObj = null;
         Object defaultValObj = null;
         if (defaultVal != null){ 
         if (defaultVal != null){ 
-            readValue(type, defaultVal);
+            defaultValObj = readValue(type, defaultVal);
         }
         }
         
         
         materialDef.addMaterialParam(type, name, defaultValObj, ffBinding);
         materialDef.addMaterialParam(type, name, defaultValObj, ffBinding);