Added variable to BlenderKey that would allow to suspend object properties loading.

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9324 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
Kae..pl 13 years ago
parent 1c92f500eb
commit b8896f3948
  1. 18
      engine/src/blender/com/jme3/asset/BlenderKey.java
  2. 2
      engine/src/blender/com/jme3/scene/plugins/blender/objects/ObjectHelper.java

@ -99,6 +99,8 @@ public class BlenderKey extends ModelKey {
* If set to -1 then the current layer will be loaded.
*/
protected int layersToLoad = -1;
/** A variable that toggles the object custom properties loading. */
protected boolean loadObjectProperties = true;
/**
* Constructor used by serialization mechanisms.
@ -216,6 +218,22 @@ public class BlenderKey extends ModelKey {
return layersToLoad;
}
/**
* This method sets the properies loading policy.
* By default the value is true.
* @param loadObjectProperties true to load properties and false to suspend their loading
*/
public void setLoadObjectProperties(boolean loadObjectProperties) {
this.loadObjectProperties = loadObjectProperties;
}
/**
* @return the current properties loading properties
*/
public boolean isLoadObjectProperties() {
return loadObjectProperties;
}
/**
* This method sets the asset root path.
* @param assetRootPath

@ -274,11 +274,13 @@ public class ObjectHelper extends AbstractBlenderHelper {
}
//reading custom properties
if(blenderContext.getBlenderKey().isLoadObjectProperties()) {
Properties properties = this.loadProperties(objectStructure, blenderContext);
if(result instanceof Spatial && properties != null && properties.getValue() != null) {
((Spatial)result).setUserData("properties", properties);
}
}
}
return result;
}

Loading…
Cancel
Save