* Adds MRM scripting commands, World.Objects.Create(Vector3 position) and World.Objects.Create(Vector3 position, Quaternion rotation). These rez a 'default box' object at the specified coordinates, and return the associated IObject.

This commit is contained in:
Adam Frisby
2009-05-31 12:53:05 +00:00
parent 07a94fdf89
commit dc15190365
2 changed files with 22 additions and 0 deletions

View File

@@ -35,5 +35,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
IObject this[int index] { get; }
IObject this[uint index] { get; }
IObject this[UUID index] { get; }
IObject Create(Vector3 position);
IObject Create(Vector3 position, Quaternion rotation);
}
}