Răsfoiți Sursa

SDK :
- fixed materialPropertyEditor that was failing when changing material and aplying it to the geom

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7933 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

rem..om 14 ani în urmă
părinte
comite
6147b641b4

+ 1 - 1
jme3-materialeditor/src/com/jme3/gde/materials/MaterialPropertyEditor.java

@@ -138,7 +138,7 @@ public class MaterialPropertyEditor implements PropertyEditor, SceneExplorerProp
                 public Void call() throws Exception {
                     SceneRequest request = SceneApplication.getApplication().getCurrentSceneRequest();
                     ((DesktopAssetManager) request.getManager()).deleteFromCache(new AssetKey(text));
-                    Material localMaterial = (Material) request.getManager().loadAsset(text);
+                    Material localMaterial = (Material) request.getManager().loadMaterial(text);
                     if (localMaterial != null) {
                         material = localMaterial;
                     }