- improve Model Importer deletion file check

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10181 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 12 years ago
parent 458c623f57
commit 9102610da6
  1. 14
      sdk/jme3-model-importer/src/com/jme3/gde/modelimporter/ImportModel.java

@ -143,14 +143,14 @@ public final class ImportModel implements ActionListener {
if (fileObj != null) {
DataObject obj = DataObject.find(fileObj);
AssetData data = obj.getLookup().lookup(AssetData.class);
if (data != null) {
if (obj instanceof SpatialAssetDataObject) {
// Delete models that are not J3O.
if (!(obj instanceof BinaryModelDataObject)) {
deleteList.add(fileObj);
}
} else if (data != null) {
AssetKey assetKey = data.getAssetKey();
if (obj instanceof SpatialAssetDataObject) {
// Delete models that are not J3O.
if (!(obj instanceof BinaryModelDataObject)) {
deleteList.add(fileObj);
}
} else if (!(assetKey instanceof TextureKey)
if (!(assetKey instanceof TextureKey)
&& !(assetKey instanceof MaterialKey)) {
// Also delete anything thats not an image or J3M file.
deleteList.add(fileObj);

Loading…
Cancel
Save