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/LSL_BuiltIn_Commands.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/LSL_BuiltIn_Commands.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index ec6d0ad..ee5d52c 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -4089,6 +4089,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
4089 | NotImplemented("llSetVehicledoubleParam"); | 4089 | NotImplemented("llSetVehicledoubleParam"); |
4090 | } | 4090 | } |
4091 | 4091 | ||
4092 | public void llSetVehicleFloatParam(int param, float value) | ||
4093 | { | ||
4094 | m_host.AddScriptLPS(1); | ||
4095 | NotImplemented("llSetVehicleFloatParam"); | ||
4096 | } | ||
4097 | |||
4092 | public void llSetVehicleVectorParam(int param, LSL_Types.Vector3 vec) | 4098 | public void llSetVehicleVectorParam(int param, LSL_Types.Vector3 vec) |
4093 | { | 4099 | { |
4094 | m_host.AddScriptLPS(1); | 4100 | m_host.AddScriptLPS(1); |
@@ -5876,6 +5882,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
5876 | return ret; | 5882 | return ret; |
5877 | } | 5883 | } |
5878 | 5884 | ||
5885 | public void llSetLinkTexture(int linknumber, string texture, int face) | ||
5886 | { | ||
5887 | m_host.AddScriptLPS(1); | ||
5888 | NotImplemented("llSetLinkTexture"); | ||
5889 | } | ||
5890 | |||
5879 | public string llStringTrim(string src, int type) | 5891 | public string llStringTrim(string src, int type) |
5880 | { | 5892 | { |
5881 | m_host.AddScriptLPS(1); | 5893 | m_host.AddScriptLPS(1); |