diff options
author | Teravus Ovares | 2008-12-09 11:11:16 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-12-09 11:11:16 +0000 |
commit | 3844e73d2742f4dee633bd2b5a8eb7e1a0d524f9 (patch) | |
tree | 11762c8bd9aa512d52de004e46e83a1e8e51e8a9 /OpenSim/Region/Physics/POSPlugin | |
parent | clean up some old debugging code (diff) | |
download | opensim-SC_OLD-3844e73d2742f4dee633bd2b5a8eb7e1a0d524f9.zip opensim-SC_OLD-3844e73d2742f4dee633bd2b5a8eb7e1a0d524f9.tar.gz opensim-SC_OLD-3844e73d2742f4dee633bd2b5a8eb7e1a0d524f9.tar.bz2 opensim-SC_OLD-3844e73d2742f4dee633bd2b5a8eb7e1a0d524f9.tar.xz |
* Gerhard's patch m2781. Does some initial work for setting up llVolumeDetect.
* Warning! Physics API change. This means that the NBodySimulation needs to be updated!
* PhysicsActor -> void SetVolumeDetect(int) needs to go into classes that use PhysicsActor as their base class.
Diffstat (limited to 'OpenSim/Region/Physics/POSPlugin')
-rw-r--r-- | OpenSim/Region/Physics/POSPlugin/POSCharacter.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Physics/POSPlugin/POSPrim.cs | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs b/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs index 8c185fc..ab66d4c 100644 --- a/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs +++ b/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs | |||
@@ -185,6 +185,11 @@ namespace OpenSim.Region.Physics.POSPlugin | |||
185 | 185 | ||
186 | } | 186 | } |
187 | 187 | ||
188 | public override void SetVolumeDetect(int param) | ||
189 | { | ||
190 | |||
191 | } | ||
192 | |||
188 | public override PhysicsVector CenterOfMass | 193 | public override PhysicsVector CenterOfMass |
189 | { | 194 | { |
190 | get { return PhysicsVector.Zero; } | 195 | get { return PhysicsVector.Zero; } |
diff --git a/OpenSim/Region/Physics/POSPlugin/POSPrim.cs b/OpenSim/Region/Physics/POSPlugin/POSPrim.cs index 873529e..fdd095f 100644 --- a/OpenSim/Region/Physics/POSPlugin/POSPrim.cs +++ b/OpenSim/Region/Physics/POSPlugin/POSPrim.cs | |||
@@ -142,6 +142,11 @@ namespace OpenSim.Region.Physics.POSPlugin | |||
142 | 142 | ||
143 | } | 143 | } |
144 | 144 | ||
145 | public override void SetVolumeDetect(int param) | ||
146 | { | ||
147 | |||
148 | } | ||
149 | |||
145 | public override PhysicsVector CenterOfMass | 150 | public override PhysicsVector CenterOfMass |
146 | { | 151 | { |
147 | get { return PhysicsVector.Zero; } | 152 | get { return PhysicsVector.Zero; } |