aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJohn Hurliman2009-11-04 16:19:56 -0800
committerJohn Hurliman2009-11-04 16:19:56 -0800
commita13e25ebbe766f9fbbc11a20fb42d5076326084f (patch)
tree4d993202bdc63c181a5fb9c41e6b69b78bd491a2 /OpenSim
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-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.cs2
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;