aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObjectAccessor.cs
diff options
context:
space:
mode:
authorAdam Frisby2009-05-31 12:53:05 +0000
committerAdam Frisby2009-05-31 12:53:05 +0000
commitdc151903650525c20fe26b2b17924a990e2d1a0a (patch)
treef3f678d7ec681aeeb456659f88b3302c6addeb8f /OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObjectAccessor.cs
parentFix IRCd init check for config section (diff)
downloadopensim-SC_OLD-dc151903650525c20fe26b2b17924a990e2d1a0a.zip
opensim-SC_OLD-dc151903650525c20fe26b2b17924a990e2d1a0a.tar.gz
opensim-SC_OLD-dc151903650525c20fe26b2b17924a990e2d1a0a.tar.bz2
opensim-SC_OLD-dc151903650525c20fe26b2b17924a990e2d1a0a.tar.xz
* 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.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObjectAccessor.cs')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObjectAccessor.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObjectAccessor.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObjectAccessor.cs
index 7aed41b..a6c8c36 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObjectAccessor.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObjectAccessor.cs
@@ -35,5 +35,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
35 IObject this[int index] { get; } 35 IObject this[int index] { get; }
36 IObject this[uint index] { get; } 36 IObject this[uint index] { get; }
37 IObject this[UUID index] { get; } 37 IObject this[UUID index] { get; }
38 IObject Create(Vector3 position);
39 IObject Create(Vector3 position, Quaternion rotation);
38 } 40 }
39} \ No newline at end of file 41} \ No newline at end of file