mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 03:06:05 +08:00
add llOrd, llChar llHash
This commit is contained in:
@@ -35,7 +35,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
public partial class ScriptBaseClass
|
||||
{
|
||||
// SCRIPTS CONSTANTS
|
||||
public static readonly LSLInteger OS_APIVERSION = 18;
|
||||
public static readonly LSLInteger OS_APIVERSION = 19;
|
||||
|
||||
public static readonly LSLInteger TRUE = 1;
|
||||
public static readonly LSLInteger FALSE = 0;
|
||||
|
||||
@@ -2182,5 +2182,20 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
{
|
||||
return m_LSL_Functions.llGetRegionMoonRotation();
|
||||
}
|
||||
|
||||
public LSL_String llChar(LSL_Integer unicode)
|
||||
{
|
||||
return m_LSL_Functions.llChar(unicode);
|
||||
}
|
||||
|
||||
public LSL_Integer llOrd(LSL_String s, LSL_Integer index)
|
||||
{
|
||||
return m_LSL_Functions.llOrd(s, index);
|
||||
}
|
||||
|
||||
public LSL_Integer llHash(LSL_String s)
|
||||
{
|
||||
return m_LSL_Functions.llHash(s);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user