aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
diff options
context:
space:
mode:
authorAdam Frisby2009-04-03 09:22:34 +0000
committerAdam Frisby2009-04-03 09:22:34 +0000
commit7e91f41535e27d992cf85a46bed25b781367dcf1 (patch)
treedf10571e25be88239637d08efad9ea552e543997 /OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
parentfix an error in hollow cylinder face number calculation (diff)
downloadopensim-SC_OLD-7e91f41535e27d992cf85a46bed25b781367dcf1.zip
opensim-SC_OLD-7e91f41535e27d992cf85a46bed25b781367dcf1.tar.gz
opensim-SC_OLD-7e91f41535e27d992cf85a46bed25b781367dcf1.tar.bz2
opensim-SC_OLD-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 '')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs5
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 @@
1using System.Collections.Generic; 1using System;
2using System.Collections.Generic;
2using OpenMetaverse; 3using OpenMetaverse;
3using OpenSim.Framework; 4using OpenSim.Framework;
4using OpenSim.Region.Framework.Scenes; 5using OpenSim.Region.Framework.Scenes;
5 6
6namespace OpenSim.Region.OptionalModules.Scripting.Minimodule 7namespace 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;