Преглед изворни кода

Made the Material Editor properly handle the new -LINEAR statement of j3md when parsing material parameters

Nehon пре 11 година
родитељ
комит
46f0f32afa

+ 6 - 2
sdk/jme3-materialeditor/src/com/jme3/gde/materialdefinition/utils/MaterialUtils.java

@@ -53,9 +53,13 @@ public class MaterialUtils {
      * @param line
      * @return
      */
-    public static String trimName(String line) {
+    public static String trimName(String line) {        
+        int idx = line.indexOf("-");
+        if(idx!=-1){             
+             line= line.substring(0, idx);
+        }
         line = trimLine(line);
-        int idx = line.indexOf("(");
+        idx = line.indexOf("(");
         if (idx == -1) {
             idx = line.indexOf(":");
         }