- undo some changes due to shady threading raising its ugly head through the changes

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9353 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2012-05-08 00:44:45 +00:00
parent 714484047b
commit fa03a75cba
3 changed files with 3 additions and 3 deletions

View File

@ -145,7 +145,7 @@ public class MoveTool extends SceneEditTool {
if (character != null) { if (character != null) {
character.setPhysicsLocation(toolController.getSelectedSpatial().getWorldTranslation()); character.setPhysicsLocation(toolController.getSelectedSpatial().getWorldTranslation());
} }
doUpdateToolsTransformation(); updateToolsTransformation();
wasDragging = true; wasDragging = true;
} }

View File

@ -99,7 +99,7 @@ public class ScaleTool extends SceneEditTool {
Vector3f scale = toolController.getSelectedSpatial().getLocalScale().add(diff, diff, diff); Vector3f scale = toolController.getSelectedSpatial().getLocalScale().add(diff, diff, diff);
lastScale = scale; lastScale = scale;
toolController.getSelectedSpatial().setLocalScale(scale); toolController.getSelectedSpatial().setLocalScale(scale);
doUpdateToolsTransformation(); updateToolsTransformation();
} }
wasDragging = true; wasDragging = true;

View File

@ -44,7 +44,7 @@ public class SelectTool extends SceneEditTool {
}); });
if (result != null) { if (result != null) {
doUpdateToolsTransformation(); updateToolsTransformation();
} }
} }