* Added support for CreateLink to LSL Interpreted API

* Added new "PermissionManager" which handles access to protected resources for users. (ie editing other peoples objects, etc)
This commit is contained in:
Adam Frisby
2007-08-02 12:30:40 +00:00
parent 9e97aa20b4
commit ad03c0dc69
2 changed files with 111 additions and 1 deletions

View File

@@ -226,9 +226,11 @@ namespace OpenSim.Region.Scripting
return (float)Math.Cos(theta);
}
[Obsolete("Unimplemented")]
public void osCreateLink(Key target, int parent)
{
if(World.Entities[target] is SceneObject)
Task.AddNewChildPrims((SceneObject)World.Entities[target]);
return;
}