diff options
author | Charles Krinke | 2008-09-28 18:36:30 +0000 |
---|---|---|
committer | Charles Krinke | 2008-09-28 18:36:30 +0000 |
commit | 3397236c6c759178bfb77e41ba761fca162a7b5f (patch) | |
tree | acedd8141784442df5c7e682b6a0ee6acebabf37 /OpenSim/Region/ScriptEngine/Shared/Api | |
parent | Mantis #2288 (diff) | |
download | opensim-SC_OLD-3397236c6c759178bfb77e41ba761fca162a7b5f.zip opensim-SC_OLD-3397236c6c759178bfb77e41ba761fca162a7b5f.tar.gz opensim-SC_OLD-3397236c6c759178bfb77e41ba761fca162a7b5f.tar.bz2 opensim-SC_OLD-3397236c6c759178bfb77e41ba761fca162a7b5f.tar.xz |
Plumb the connection through from llSetVehicleFloatParam
to the various physics engines. No connection to the
underlying physics simulator yet, just plumbing through
the various classes.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 9 |
1 files changed, 8 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 34d888d..c3939f0 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -5171,7 +5171,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5171 | public void llSetVehicleFloatParam(int param, float value) | 5171 | public void llSetVehicleFloatParam(int param, float value) |
5172 | { | 5172 | { |
5173 | m_host.AddScriptLPS(1); | 5173 | m_host.AddScriptLPS(1); |
5174 | NotImplemented("llSetVehicleFloatParam"); | 5174 | |
5175 | if (m_host.ParentGroup != null) | ||
5176 | { | ||
5177 | if (m_host.ParentGroup.RootPart != null) | ||
5178 | { | ||
5179 | m_host.ParentGroup.RootPart.SetVehicleFloatParam(value); | ||
5180 | } | ||
5181 | } | ||
5175 | } | 5182 | } |
5176 | 5183 | ||
5177 | public void llSetVehicleVectorParam(int param, LSL_Vector vec) | 5184 | public void llSetVehicleVectorParam(int param, LSL_Vector vec) |