mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
From: Kurt Taylor <krtaylor@us.ibm.com>
Adds "not implemented" stubs for llSetVehicleFloatParam() and llSetLinkTexture() Some cleanup of LSO script enums
This commit is contained in:
@@ -4089,6 +4089,12 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||
NotImplemented("llSetVehicledoubleParam");
|
||||
}
|
||||
|
||||
public void llSetVehicleFloatParam(int param, float value)
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
NotImplemented("llSetVehicleFloatParam");
|
||||
}
|
||||
|
||||
public void llSetVehicleVectorParam(int param, LSL_Types.Vector3 vec)
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
@@ -5876,6 +5882,12 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||
return ret;
|
||||
}
|
||||
|
||||
public void llSetLinkTexture(int linknumber, string texture, int face)
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
NotImplemented("llSetLinkTexture");
|
||||
}
|
||||
|
||||
public string llStringTrim(string src, int type)
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
|
||||
Reference in New Issue
Block a user