diff options
author | Justin Clarke Casey | 2008-05-02 15:29:09 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-05-02 15:29:09 +0000 |
commit | 8cf2630dc9058078b82814ea28fd4e5150351466 (patch) | |
tree | 1e0cc1ed20a9034838dc23ac725a3acf46fad7a4 /OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |
parent | minor refactoring. Change getName and GetVersion methods (yes the had differ... (diff) | |
download | opensim-SC-8cf2630dc9058078b82814ea28fd4e5150351466.zip opensim-SC-8cf2630dc9058078b82814ea28fd4e5150351466.tar.gz opensim-SC-8cf2630dc9058078b82814ea28fd4e5150351466.tar.bz2 opensim-SC-8cf2630dc9058078b82814ea28fd4e5150351466.tar.xz |
From: Kurt Taylor <krtaylor@us.ibm.com>
Adds "not implemented" stubs for llSetVehicleFloatParam() and llSetLinkTexture()
Some cleanup of LSO script enums
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs index 9b541c5..f7cd697 100644 --- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |||
@@ -1368,6 +1368,11 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1368 | m_LSL_Functions.llSetVehicledoubleParam(param, value); | 1368 | m_LSL_Functions.llSetVehicledoubleParam(param, value); |
1369 | } | 1369 | } |
1370 | 1370 | ||
1371 | public void llSetVehicleFloatParam(int param, float value) | ||
1372 | { | ||
1373 | m_LSL_Functions.llSetVehicleFloatParam(param, value); | ||
1374 | } | ||
1375 | |||
1371 | public void llSetVehicleVectorParam(int param, vector vec) | 1376 | public void llSetVehicleVectorParam(int param, vector vec) |
1372 | { | 1377 | { |
1373 | m_LSL_Functions.llSetVehicleVectorParam(param, vec); | 1378 | m_LSL_Functions.llSetVehicleVectorParam(param, vec); |
@@ -1854,6 +1859,11 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1854 | return m_LSL_Functions.llGetParcelDetails(pos, param); | 1859 | return m_LSL_Functions.llGetParcelDetails(pos, param); |
1855 | } | 1860 | } |
1856 | 1861 | ||
1862 | public void llSetLinkTexture(int linknumber, string texture, int face) | ||
1863 | { | ||
1864 | m_LSL_Functions.llSetLinkTexture(linknumber, texture, face); | ||
1865 | } | ||
1866 | |||
1857 | public string llStringTrim(string src, int type) | 1867 | public string llStringTrim(string src, int type) |
1858 | { | 1868 | { |
1859 | return m_LSL_Functions.llStringTrim(src, type); | 1869 | return m_LSL_Functions.llStringTrim(src, type); |