diff options
author | Charles Krinke | 2008-09-28 21:53:56 +0000 |
---|---|---|
committer | Charles Krinke | 2008-09-28 21:53:56 +0000 |
commit | ebbbd37605e2954c877454ed8cafd4027f0bdc10 (patch) | |
tree | 7e8dfed49511939877ffd9fec6981d3be29864e4 /OpenSim/Region/Physics/POSPlugin | |
parent | A little bit further with LLSetVehicleVectorParam. (diff) | |
download | opensim-SC_OLD-ebbbd37605e2954c877454ed8cafd4027f0bdc10.zip opensim-SC_OLD-ebbbd37605e2954c877454ed8cafd4027f0bdc10.tar.gz opensim-SC_OLD-ebbbd37605e2954c877454ed8cafd4027f0bdc10.tar.bz2 opensim-SC_OLD-ebbbd37605e2954c877454ed8cafd4027f0bdc10.tar.xz |
Added the plumbing for llSetVehicleRotationParam
in the classes between the LSL implementation and the
underlying physics engines.
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 719d4cf..9719a05 100644 --- a/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs +++ b/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs | |||
@@ -169,6 +169,11 @@ namespace OpenSim.Region.Physics.POSPlugin | |||
169 | 169 | ||
170 | } | 170 | } |
171 | 171 | ||
172 | public override void VehicleRotationParam(int param, Quaternion rotation) | ||
173 | { | ||
174 | |||
175 | } | ||
176 | |||
172 | public override PhysicsVector CenterOfMass | 177 | public override PhysicsVector CenterOfMass |
173 | { | 178 | { |
174 | get { return PhysicsVector.Zero; } | 179 | get { return PhysicsVector.Zero; } |
diff --git a/OpenSim/Region/Physics/POSPlugin/POSPrim.cs b/OpenSim/Region/Physics/POSPlugin/POSPrim.cs index a674e77..265e170 100644 --- a/OpenSim/Region/Physics/POSPlugin/POSPrim.cs +++ b/OpenSim/Region/Physics/POSPlugin/POSPrim.cs | |||
@@ -131,6 +131,11 @@ namespace OpenSim.Region.Physics.POSPlugin | |||
131 | 131 | ||
132 | } | 132 | } |
133 | 133 | ||
134 | public override void VehicleRotationParam(int param, Quaternion rotation) | ||
135 | { | ||
136 | |||
137 | } | ||
138 | |||
134 | public override PhysicsVector CenterOfMass | 139 | public override PhysicsVector CenterOfMass |
135 | { | 140 | { |
136 | get { return PhysicsVector.Zero; } | 141 | get { return PhysicsVector.Zero; } |