diff options
author | UbitUmarov | 2012-02-18 17:42:14 +0000 |
---|---|---|
committer | UbitUmarov | 2012-02-18 17:42:14 +0000 |
commit | 3aee642190add7045f78e522ae7b2221b3566f1e (patch) | |
tree | a390b28dce297bde43aa216332d217b2b28ea03a /OpenSim/Region/Physics/Manager/PhysicsActor.cs | |
parent | vehicle parameters do cross (i hope) on regions in same instance ( others ne... (diff) | |
download | opensim-SC_OLD-3aee642190add7045f78e522ae7b2221b3566f1e.zip opensim-SC_OLD-3aee642190add7045f78e522ae7b2221b3566f1e.tar.gz opensim-SC_OLD-3aee642190add7045f78e522ae7b2221b3566f1e.tar.bz2 opensim-SC_OLD-3aee642190add7045f78e522ae7b2221b3566f1e.tar.xz |
changed how vehicle data is stored and passed to physics. use unsafe in serializer, tried to control m_dupeInProgress
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsActor.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index eb0228a..f525e9e 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -146,6 +146,8 @@ namespace OpenSim.Region.Physics.Manager | |||
146 | /// </summary> | 146 | /// </summary> |
147 | public event CollisionUpdate OnCollisionUpdate; | 147 | public event CollisionUpdate OnCollisionUpdate; |
148 | 148 | ||
149 | public virtual void SetVehicle(object vdata) { } | ||
150 | |||
149 | public event OutOfBounds OnOutOfBounds; | 151 | public event OutOfBounds OnOutOfBounds; |
150 | #pragma warning restore 67 | 152 | #pragma warning restore 67 |
151 | 153 | ||
@@ -153,8 +155,7 @@ namespace OpenSim.Region.Physics.Manager | |||
153 | { | 155 | { |
154 | get { return new NullPhysicsActor(); } | 156 | get { return new NullPhysicsActor(); } |
155 | } | 157 | } |
156 | 158 | ||
157 | |||
158 | public virtual bool Building { get; set; } | 159 | public virtual bool Building { get; set; } |
159 | 160 | ||
160 | public virtual ContactData ContactData | 161 | public virtual ContactData ContactData |