diff options
author | Adam Frisby | 2009-04-03 09:22:34 +0000 |
---|---|---|
committer | Adam Frisby | 2009-04-03 09:22:34 +0000 |
commit | 7e91f41535e27d992cf85a46bed25b781367dcf1 (patch) | |
tree | df10571e25be88239637d08efad9ea552e543997 /OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs | |
parent | fix an error in hollow cylinder face number calculation (diff) | |
download | opensim-SC-7e91f41535e27d992cf85a46bed25b781367dcf1.zip opensim-SC-7e91f41535e27d992cf85a46bed25b781367dcf1.tar.gz opensim-SC-7e91f41535e27d992cf85a46bed25b781367dcf1.tar.bz2 opensim-SC-7e91f41535e27d992cf85a46bed25b781367dcf1.tar.xz |
* Implements "ID" semi-global within MRM scripts. This is tied to the 'state ID' for MRMs.
* Implements IPersistence interface, allows simple KeyValue access for MRM scripts to a more permanent datastore.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs index 8b7b470..5010a34 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs | |||
@@ -1,11 +1,12 @@ | |||
1 | using System.Collections.Generic; | 1 | using System; |
2 | using System.Collections.Generic; | ||
2 | using OpenMetaverse; | 3 | using OpenMetaverse; |
3 | using OpenSim.Framework; | 4 | using OpenSim.Framework; |
4 | using OpenSim.Region.Framework.Scenes; | 5 | using OpenSim.Region.Framework.Scenes; |
5 | 6 | ||
6 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | 7 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule |
7 | { | 8 | { |
8 | class SOPObject : IObject | 9 | class SOPObject : MarshalByRefObject, IObject |
9 | { | 10 | { |
10 | private readonly Scene m_rootScene; | 11 | private readonly Scene m_rootScene; |
11 | private readonly uint m_localID; | 12 | private readonly uint m_localID; |