diff options
author | John Hurliman | 2009-11-04 16:19:56 -0800 |
---|---|---|
committer | John Hurliman | 2009-11-04 16:19:56 -0800 |
commit | a13e25ebbe766f9fbbc11a20fb42d5076326084f (patch) | |
tree | 4d993202bdc63c181a5fb9c41e6b69b78bd491a2 /OpenSim | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-a13e25ebbe766f9fbbc11a20fb42d5076326084f.zip opensim-SC_OLD-a13e25ebbe766f9fbbc11a20fb42d5076326084f.tar.gz opensim-SC_OLD-a13e25ebbe766f9fbbc11a20fb42d5076326084f.tar.bz2 opensim-SC_OLD-a13e25ebbe766f9fbbc11a20fb42d5076326084f.tar.xz |
Initialize SceneObjectPart.RotationOffset to Quaternion.Identity
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 2bc7f66..f47be99 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -243,7 +243,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
243 | protected SceneObjectGroup m_parentGroup; | 243 | protected SceneObjectGroup m_parentGroup; |
244 | protected byte[] m_particleSystem = Utils.EmptyBytes; | 244 | protected byte[] m_particleSystem = Utils.EmptyBytes; |
245 | protected ulong m_regionHandle; | 245 | protected ulong m_regionHandle; |
246 | protected Quaternion m_rotationOffset; | 246 | protected Quaternion m_rotationOffset = Quaternion.Identity; |
247 | protected PrimitiveBaseShape m_shape; | 247 | protected PrimitiveBaseShape m_shape; |
248 | protected UUID m_uuid; | 248 | protected UUID m_uuid; |
249 | protected Vector3 m_velocity; | 249 | protected Vector3 m_velocity; |