mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Provide a GetApi method on the IScriptEngine to get a named API reference
This allows cross-api method calls on the implementation and also allows "Meta APIs" that only provide common functionality to other APIs
This commit is contained in:
@@ -869,5 +869,13 @@ namespace OpenSim.Region.ScriptEngine.XEngine
|
||||
|
||||
DoBackup(new Object[] {0});
|
||||
}
|
||||
|
||||
public IScriptApi GetApi(UUID itemID, string name)
|
||||
{
|
||||
IScriptInstance instance = GetInstance(itemID);
|
||||
if (instance == null)
|
||||
return null;
|
||||
return instance.GetApi(name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user