aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples
diff options
context:
space:
mode:
authorMelanie2009-10-02 00:45:31 +0100
committerMelanie2009-10-02 00:45:31 +0100
commitd6301db382111bf57a7893215ea84b7e6b09187e (patch)
tree78c69a2354f8b84afda180043cb0c1c5d6d7e7a3 /OpenSim/Region/Examples
parentAdd "dump asset" command to remote asset connector (the only one that uses a (diff)
downloadopensim-SC_OLD-d6301db382111bf57a7893215ea84b7e6b09187e.zip
opensim-SC_OLD-d6301db382111bf57a7893215ea84b7e6b09187e.tar.gz
opensim-SC_OLD-d6301db382111bf57a7893215ea84b7e6b09187e.tar.bz2
opensim-SC_OLD-d6301db382111bf57a7893215ea84b7e6b09187e.tar.xz
Revert "* Adding Scale to EntityBase * Fixing the incorrect initialization of EntityBase.Rotation * Removed SceneObjectGroup.GroupRotation and added overrides for Scale/Rotation/Velocity"
This reverts commit 39842eb4af3b5a8c52d56c0f7f05ad54f0651bb0.
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/ComplexObject.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/ComplexObject.cs b/OpenSim/Region/Examples/SimpleModule/ComplexObject.cs
index 66f4da0..3809749 100644
--- a/OpenSim/Region/Examples/SimpleModule/ComplexObject.cs
+++ b/OpenSim/Region/Examples/SimpleModule/ComplexObject.cs
@@ -68,7 +68,7 @@ namespace OpenSim.Region.Examples.SimpleModule
68 68
69 public override void UpdateMovement() 69 public override void UpdateMovement()
70 { 70 {
71 UpdateGroupRotation(Rotation * m_rotationDirection); 71 UpdateGroupRotation(GroupRotation * m_rotationDirection);
72 72
73 base.UpdateMovement(); 73 base.UpdateMovement();
74 } 74 }