Enable scripting interface for windlight

This commit is contained in:
unknown
2009-12-09 01:34:26 +01:00
parent dbd8c400ce
commit e3f229225c
11 changed files with 423 additions and 1 deletions

View File

@@ -80,7 +80,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
// Avatar Info Commands
string osGetAgentIP(string agent);
LSL_List osGetAgents();
// Teleport commands
void osTeleportAgent(string agent, string regionName, LSL_Types.Vector3 position, LSL_Types.Vector3 lookat);
void osTeleportAgent(string agent, int regionX, int regionY, LSL_Types.Vector3 position, LSL_Types.Vector3 lookat);
@@ -163,5 +163,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
key osGetMapTexture();
key osGetRegionMapTexture(string regionName);
LSL_List osGetRegionStats();
// Windlight Functions
LSL_List osGetWindlightScene(LSL_List rules);
int osSetWindlightScene(LSL_List rules);
}
}