Adds "not implemented" stubs for llSetVehicleFloatParam() and llSetLinkTexture()
Some cleanup of LSO script enums
This commit is contained in:
Justin Clarke Casey
2008-05-02 15:29:09 +00:00
parent 4a8f432441
commit 8cf2630dc9
4 changed files with 34 additions and 3 deletions

View File

@@ -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);