SDK:
- 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:
parent
714484047b
commit
fa03a75cba
@ -145,7 +145,7 @@ public class MoveTool extends SceneEditTool {
|
||||
if (character != null) {
|
||||
character.setPhysicsLocation(toolController.getSelectedSpatial().getWorldTranslation());
|
||||
}
|
||||
doUpdateToolsTransformation();
|
||||
updateToolsTransformation();
|
||||
|
||||
wasDragging = true;
|
||||
}
|
||||
|
@ -99,7 +99,7 @@ public class ScaleTool extends SceneEditTool {
|
||||
Vector3f scale = toolController.getSelectedSpatial().getLocalScale().add(diff, diff, diff);
|
||||
lastScale = scale;
|
||||
toolController.getSelectedSpatial().setLocalScale(scale);
|
||||
doUpdateToolsTransformation();
|
||||
updateToolsTransformation();
|
||||
}
|
||||
|
||||
wasDragging = true;
|
||||
|
@ -44,7 +44,7 @@ public class SelectTool extends SceneEditTool {
|
||||
});
|
||||
|
||||
if (result != null) {
|
||||
doUpdateToolsTransformation();
|
||||
updateToolsTransformation();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user