mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user