diff options
author | Teravus Ovares | 2007-11-08 00:10:40 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-08 00:10:40 +0000 |
commit | 9e9dad1cde362de093d0d7e6c3e247ff00ceac96 (patch) | |
tree | 72b364a18532ee152cfbd72df0158b8a2e001464 /OpenSim/Region/Environment/Scenes/EntityBase.cs | |
parent | set svn:eol-style (diff) | |
download | opensim-SC_OLD-9e9dad1cde362de093d0d7e6c3e247ff00ceac96.zip opensim-SC_OLD-9e9dad1cde362de093d0d7e6c3e247ff00ceac96.tar.gz opensim-SC_OLD-9e9dad1cde362de093d0d7e6c3e247ff00ceac96.tar.bz2 opensim-SC_OLD-9e9dad1cde362de093d0d7e6c3e247ff00ceac96.tar.xz |
* Added Rotational Velocity reporting for Client Interpolation to Terse Updates
* Added Angular Velocity reporting for smooth-ish rotations on object collisions
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/EntityBase.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/EntityBase.cs | 3 |
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 | ||