diff options
author | Mic Bowman | 2013-02-06 17:29:17 -0800 |
---|---|---|
committer | Mic Bowman | 2013-02-06 17:29:17 -0800 |
commit | e17392acbb46e1e48e169069a822f8b814762214 (patch) | |
tree | c14427ae1cd4c294addbe220e8916d4b9e068e3d /OpenSim/Region/Framework/Interfaces | |
parent | BulletSim: remove an exception which occurs if a physics mesh (diff) | |
download | opensim-SC_OLD-e17392acbb46e1e48e169069a822f8b814762214.zip opensim-SC_OLD-e17392acbb46e1e48e169069a822f8b814762214.tar.gz opensim-SC_OLD-e17392acbb46e1e48e169069a822f8b814762214.tar.bz2 opensim-SC_OLD-e17392acbb46e1e48e169069a822f8b814762214.tar.xz |
Enables script access to the per object dynamic attributes through the JsonStore
script functions. Adds JsonAttachObjectStore to associate a store identifier with
an object (scripts can only access the store in their host object, this could be
extended but isn't necessary for now).
Note this opens a method to the DAMap OSDMap. This will be removed later, but
greatly simplifies the code for now.
The JsonStore and these scripts are disabled by default.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IJsonStoreModule.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IJsonStoreModule.cs b/OpenSim/Region/Framework/Interfaces/IJsonStoreModule.cs index 0bb4567..cc7885a 100644 --- a/OpenSim/Region/Framework/Interfaces/IJsonStoreModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IJsonStoreModule.cs | |||
@@ -35,6 +35,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
35 | 35 | ||
36 | public interface IJsonStoreModule | 36 | public interface IJsonStoreModule |
37 | { | 37 | { |
38 | bool AttachObjectStore(UUID objectID); | ||
38 | bool CreateStore(string value, ref UUID result); | 39 | bool CreateStore(string value, ref UUID result); |
39 | bool DestroyStore(UUID storeID); | 40 | bool DestroyStore(UUID storeID); |
40 | bool TestStore(UUID storeID); | 41 | bool TestStore(UUID storeID); |