- remove unused methods in SceneComposer

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10396 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 12 years ago
parent 4a2db486b1
commit 81b8ed4a47
  1. 14
      sdk/jme3-scenecomposer/src/com/jme3/gde/scenecomposer/SceneComposerTopComponent.java
  2. 94
      sdk/jme3-scenecomposer/src/com/jme3/gde/scenecomposer/SceneEditorController.java

@ -899,13 +899,13 @@ private void jToggleSelectGeomActionPerformed(java.awt.event.ActionEvent evt) {/
SceneApplication.getApplication().openScene(request); SceneApplication.getApplication().openScene(request);
} }
public void addModel(Spatial model) { // public void addModel(Spatial model) {
if (editorController != null) { // if (editorController != null) {
editorController.addModel(model, toolController.getCursorLocation()); // editorController.addModel(model, toolController.getCursorLocation());
} else { // } else {
displayInfo("No scene opened!"); // displayInfo("No scene opened!");
} // }
} // }
public void addModel(SpatialAssetDataObject model) { public void addModel(SpatialAssetDataObject model) {
if (editorController != null) { if (editorController != null) {

@ -644,53 +644,53 @@ public class SceneEditorController implements PropertyChangeListener, NodeListen
} }
public void addModel(final Spatial file) { // public void addModel(final Spatial file) {
addModel(file, null); // addModel(file, null);
} // }
//
public void addModel(final Spatial file, final Vector3f location) { // public void addModel(final Spatial file, final Vector3f location) {
if (selectedSpat == null) { // if (selectedSpat == null) {
return; // return;
} // }
final Node selected = selectedSpat.getLookup().lookup(Node.class); // final Node selected = selectedSpat.getLookup().lookup(Node.class);
if (selected != null) { // if (selected != null) {
setNeedsSave(true); // setNeedsSave(true);
SceneApplication.getApplication().enqueue(new Callable<Object>() { // SceneApplication.getApplication().enqueue(new Callable<Object>() {
//
public Object call() throws Exception { // public Object call() throws Exception {
doAddModel(file, selected, location); // doAddModel(file, selected, location);
return null; // return null;
} // }
}); // });
} else { // } else {
displayInfo("Please select a Node to attach to\nin the SceneExplorer."); // displayInfo("Please select a Node to attach to\nin the SceneExplorer.");
} // }
} // }
//
public void doAddModel(Spatial file, Node selected, Vector3f location) { // public void doAddModel(Spatial file, Node selected, Vector3f location) {
ProgressHandle progressHandle = ProgressHandleFactory.createHandle("Adding Model.."); // ProgressHandle progressHandle = ProgressHandleFactory.createHandle("Adding Model..");
progressHandle.start(); // progressHandle.start();
try { // try {
if (file != null) { // if (file != null) {
selected.attachChild(file); // selected.attachChild(file);
if (location != null) { // if (location != null) {
Vector3f localVec = new Vector3f(); // Vector3f localVec = new Vector3f();
selected.worldToLocal(location, localVec); // selected.worldToLocal(location, localVec);
file.setLocalTranslation(localVec); // file.setLocalTranslation(localVec);
} // }
} // }
refreshSelected(); // refreshSelected();
addSpatialUndo(selected, file, null, jmeRootNode); // addSpatialUndo(selected, file, null, jmeRootNode);
} catch (Exception ex) { // } catch (Exception ex) {
Confirmation msg = new NotifyDescriptor.Confirmation( // Confirmation msg = new NotifyDescriptor.Confirmation(
"Error importing " + file.getName() + "\n" + ex.toString(), // "Error importing " + file.getName() + "\n" + ex.toString(),
NotifyDescriptor.OK_CANCEL_OPTION, // NotifyDescriptor.OK_CANCEL_OPTION,
NotifyDescriptor.ERROR_MESSAGE); // NotifyDescriptor.ERROR_MESSAGE);
DialogDisplayer.getDefault().notifyLater(msg); // DialogDisplayer.getDefault().notifyLater(msg);
} // }
progressHandle.finish(); // progressHandle.finish();
//
} // }
public void setNeedsSave(boolean state) { public void setNeedsSave(boolean state) {
currentFileObject.setModified(state); currentFileObject.setModified(state);

Loading…
Cancel
Save