diff options
author | John Hurliman | 2009-09-16 15:45:40 -0700 |
---|---|---|
committer | John Hurliman | 2009-09-16 17:17:40 -0700 |
commit | 39842eb4af3b5a8c52d56c0f7f05ad54f0651bb0 (patch) | |
tree | 328265a2202540bc42941fcb87393d9534509a73 /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | SceneObjectGroup cleanup. Removes the default constructor and unnecessary nul... (diff) | |
download | opensim-SC-39842eb4af3b5a8c52d56c0f7f05ad54f0651bb0.zip opensim-SC-39842eb4af3b5a8c52d56c0f7f05ad54f0651bb0.tar.gz opensim-SC-39842eb4af3b5a8c52d56c0f7f05ad54f0651bb0.tar.bz2 opensim-SC-39842eb4af3b5a8c52d56c0f7f05ad54f0651bb0.tar.xz |
* Adding Scale to EntityBase * Fixing the incorrect initialization of EntityBase.Rotation * Removed SceneObjectGroup.GroupRotation and added overrides for Scale/Rotation/Velocity
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index d8478a2..5b3062b 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -2296,8 +2296,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2296 | "to avatar {0} at position {1}", | 2296 | "to avatar {0} at position {1}", |
2297 | sp.UUID.ToString(), grp.AbsolutePosition); | 2297 | sp.UUID.ToString(), grp.AbsolutePosition); |
2298 | AttachObject(sp.ControllingClient, | 2298 | AttachObject(sp.ControllingClient, |
2299 | grp.LocalId, (uint)0, | 2299 | grp.LocalId, 0, |
2300 | grp.GroupRotation, | 2300 | grp.Rotation, |
2301 | grp.AbsolutePosition, false); | 2301 | grp.AbsolutePosition, false); |
2302 | RootPrim.RemFlag(PrimFlags.TemporaryOnRez); | 2302 | RootPrim.RemFlag(PrimFlags.TemporaryOnRez); |
2303 | grp.SendGroupFullUpdate(); | 2303 | grp.SendGroupFullUpdate(); |