aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-09-28 20:20:32 +0000
committerCharles Krinke2008-09-28 20:20:32 +0000
commit37478629995e6c113fa1ccbd56eb948c64e0f594 (patch)
tree7d468079beabb2547c7add896af59f29bef3b6b3 /OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
parentMantis #1922 (diff)
downloadopensim-SC_OLD-37478629995e6c113fa1ccbd56eb948c64e0f594.zip
opensim-SC_OLD-37478629995e6c113fa1ccbd56eb948c64e0f594.tar.gz
opensim-SC_OLD-37478629995e6c113fa1ccbd56eb948c64e0f594.tar.bz2
opensim-SC_OLD-37478629995e6c113fa1ccbd56eb948c64e0f594.tar.xz
Plumb the connection though from llSetVehicleVectorParam
to the various physics engines. No connection to the underlying physics simulator yet, just plumbing through the various classes.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index f8257c3..4da3360 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -5170,7 +5170,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
5170 { 5170 {
5171 if (m_host.ParentGroup.RootPart != null) 5171 if (m_host.ParentGroup.RootPart != null)
5172 { 5172 {
5173 m_host.ParentGroup.RootPart.SetVehicleFloatParam(value); 5173 m_host.ParentGroup.RootPart.SetVehicleFloatParam(param, value);
5174 } 5174 }
5175 } 5175 }
5176 } 5176 }