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 39842eb4af.
This commit is contained in:
Melanie
2009-10-02 00:45:31 +01:00
parent 26478ff689
commit d6301db382
6 changed files with 28 additions and 46 deletions

View File

@@ -68,7 +68,7 @@ namespace OpenSim.Region.Examples.SimpleModule
public override void UpdateMovement()
{
UpdateGroupRotation(Rotation * m_rotationDirection);
UpdateGroupRotation(GroupRotation * m_rotationDirection);
base.UpdateMovement();
}