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

@@ -1368,6 +1368,11 @@ namespace OpenSim.Region.ScriptEngine.Common
m_LSL_Functions.llSetVehicledoubleParam(param, value);
}
public void llSetVehicleFloatParam(int param, float value)
{
m_LSL_Functions.llSetVehicleFloatParam(param, value);
}
public void llSetVehicleVectorParam(int param, vector vec)
{
m_LSL_Functions.llSetVehicleVectorParam(param, vec);
@@ -1854,6 +1859,11 @@ namespace OpenSim.Region.ScriptEngine.Common
return m_LSL_Functions.llGetParcelDetails(pos, param);
}
public void llSetLinkTexture(int linknumber, string texture, int face)
{
m_LSL_Functions.llSetLinkTexture(linknumber, texture, face);
}
public string llStringTrim(string src, int type)
{
return m_LSL_Functions.llStringTrim(src, type);