diff options
author | UbitUmarov | 2012-02-17 21:09:00 +0000 |
---|---|---|
committer | UbitUmarov | 2012-02-17 21:09:00 +0000 |
commit | 7d77ccc6593c6c3ac9f66e2e593dfb8cc719cd04 (patch) | |
tree | 22b49c5533ed40f76d861f77c1b15a821606756a /OpenSim/Region/Physics/Manager/PhysicsActor.cs | |
parent | Now if chode prim.cs detects out of bounds it requests a update and blocks mo... (diff) | |
download | opensim-SC_OLD-7d77ccc6593c6c3ac9f66e2e593dfb8cc719cd04.zip opensim-SC_OLD-7d77ccc6593c6c3ac9f66e2e593dfb8cc719cd04.tar.gz opensim-SC_OLD-7d77ccc6593c6c3ac9f66e2e593dfb8cc719cd04.tar.bz2 opensim-SC_OLD-7d77ccc6593c6c3ac9f66e2e593dfb8cc719cd04.tar.xz |
Added simple binary serializer/deserializer to chODE. 100% untested and most like still broken
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsActor.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index e1a68be..eb0228a 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -214,6 +214,11 @@ namespace OpenSim.Region.Physics.Manager | |||
214 | } | 214 | } |
215 | } | 215 | } |
216 | 216 | ||
217 | public virtual byte[] Serialize(bool PhysIsRunning) | ||
218 | { | ||
219 | return new byte[0]; | ||
220 | } | ||
221 | |||
217 | public virtual void RaiseOutOfBounds(Vector3 pos) | 222 | public virtual void RaiseOutOfBounds(Vector3 pos) |
218 | { | 223 | { |
219 | // Make a temporary copy of the event to avoid possibility of | 224 | // Make a temporary copy of the event to avoid possibility of |
@@ -573,5 +578,6 @@ namespace OpenSim.Region.Physics.Manager | |||
573 | { | 578 | { |
574 | return false; | 579 | return false; |
575 | } | 580 | } |
581 | |||
576 | } | 582 | } |
577 | } | 583 | } |