aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/EntityBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/EntityBase.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/EntityBase.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EntityBase.cs b/OpenSim/Region/Environment/Scenes/EntityBase.cs
index d0cbcf6..1c21159 100644
--- a/OpenSim/Region/Environment/Scenes/EntityBase.cs
+++ b/OpenSim/Region/Environment/Scenes/EntityBase.cs
@@ -69,6 +69,7 @@ namespace OpenSim.Region.Environment.Scenes
69 } 69 }
70 70
71 protected LLVector3 m_velocity; 71 protected LLVector3 m_velocity;
72 protected LLVector3 m_rotationalvelocity;
72 73
73 /// <summary> 74 /// <summary>
74 /// 75 ///
@@ -106,7 +107,7 @@ namespace OpenSim.Region.Environment.Scenes
106 m_velocity = new LLVector3(); 107 m_velocity = new LLVector3();
107 Rotation = new Quaternion(); 108 Rotation = new Quaternion();
108 m_name = "(basic entity)"; 109 m_name = "(basic entity)";
109 110 m_rotationalvelocity = new LLVector3(0, 0, 0);
110 m_children = new List<EntityBase>(); 111 m_children = new List<EntityBase>();
111 } 112 }
112 113