aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs12
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);