diff options
author | SignpostMarv | 2012-08-10 15:58:29 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-08-24 00:21:42 +0100 |
commit | 2ad9d656b3a1a0c519c9599d7680f98eba7e82b8 (patch) | |
tree | a6879c3744123e27f66f5984ba2df634ba4448df /OpenSim/Region/ScriptEngine/Shared/Api/Interface | |
parent | Removed land checking as suggested by SignpostMarv. (diff) | |
download | opensim-SC_OLD-2ad9d656b3a1a0c519c9599d7680f98eba7e82b8.zip opensim-SC_OLD-2ad9d656b3a1a0c519c9599d7680f98eba7e82b8.tar.gz opensim-SC_OLD-2ad9d656b3a1a0c519c9599d7680f98eba7e82b8.tar.bz2 opensim-SC_OLD-2ad9d656b3a1a0c519c9599d7680f98eba7e82b8.tar.xz |
implementing function to allow scripts to self-replicate as if the owner duplicated them, using the same script delay as llRezObject()
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs index 9ad1c22..8c90df4 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | |||
@@ -306,5 +306,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
306 | /// </summary> | 306 | /// </summary> |
307 | /// <returns>Rezzing object key or NULL_KEY if rezzed by agent or otherwise unknown.</returns> | 307 | /// <returns>Rezzing object key or NULL_KEY if rezzed by agent or otherwise unknown.</returns> |
308 | LSL_Key osGetRezzingObject(); | 308 | LSL_Key osGetRezzingObject(); |
309 | |||
310 | /// <summary> | ||
311 | /// Duplicates an object as if the owner duplicated it. | ||
312 | /// </summary> | ||
313 | /// <param name="offset"></param> | ||
314 | /// <param name="rot"></param> | ||
315 | void osRezDuplicate(vector offset, rotation rot); | ||
309 | } | 316 | } |
310 | } | 317 | } |