mirror of
https://github.com/opensim/opensim.git
synced 2026-07-13 19:14:51 +08:00
Add interface, implementation stub and
script stub for llGetFreeURLs().
This commit is contained in:
@@ -5557,6 +5557,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
return 16384;
|
||||
}
|
||||
|
||||
public LSL_Integer llGetFreeURLs()
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
NotImplemented("llGetFreeURLs");
|
||||
return new LSL_Integer(0);
|
||||
}
|
||||
|
||||
|
||||
public LSL_String llGetRegionName()
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
|
||||
@@ -120,6 +120,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
|
||||
LSL_Float llGetEnergy();
|
||||
LSL_Vector llGetForce();
|
||||
LSL_Integer llGetFreeMemory();
|
||||
LSL_Integer llGetFreeURLs();
|
||||
LSL_Vector llGetGeometricCenter();
|
||||
LSL_Float llGetGMTclock();
|
||||
LSL_Key llGetInventoryCreator(string item);
|
||||
|
||||
@@ -459,6 +459,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
return m_LSL_Functions.llGetFreeMemory();
|
||||
}
|
||||
|
||||
public LSL_Integer llGetFreeURLs()
|
||||
{
|
||||
return m_LSL_Functions.llGetFreeURLs();
|
||||
}
|
||||
|
||||
public LSL_Vector llGetGeometricCenter()
|
||||
{
|
||||
return m_LSL_Functions.llGetGeometricCenter();
|
||||
|
||||
Reference in New Issue
Block a user