aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-06-27 02:22:33 +0000
committerCharles Krinke2008-06-27 02:22:33 +0000
commit3697e0898c83597914956157b4bbf880b83d948b (patch)
tree525dc3728b46f92a53e68e65b0ecb1638c3ffbd7 /OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
parentMantis#1591. Thank you graciously, Sempuki for a patch that: (diff)
downloadopensim-SC_OLD-3697e0898c83597914956157b4bbf880b83d948b.zip
opensim-SC_OLD-3697e0898c83597914956157b4bbf880b83d948b.tar.gz
opensim-SC_OLD-3697e0898c83597914956157b4bbf880b83d948b.tar.bz2
opensim-SC_OLD-3697e0898c83597914956157b4bbf880b83d948b.tar.xz
Mantis#1612. Thank you, kindly, Matth for a patch that:
Adds the beginnints of llRemoteLoadScriptPin() and llSetRemoteScriptAccessPin().
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectPart.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectPart.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
index 1f5f00f..6009206 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
@@ -102,6 +102,7 @@ namespace OpenSim.Region.Environment.Scenes
102 [XmlIgnore] public scriptEvents m_aggregateScriptEvents=0; 102 [XmlIgnore] public scriptEvents m_aggregateScriptEvents=0;
103 [XmlIgnore] private LLObject.ObjectFlags LocalFlags = LLObject.ObjectFlags.None; 103 [XmlIgnore] private LLObject.ObjectFlags LocalFlags = LLObject.ObjectFlags.None;
104 [XmlIgnore] public bool DIE_AT_EDGE = false; 104 [XmlIgnore] public bool DIE_AT_EDGE = false;
105 [XmlIgnore] private int m_scriptAccessPin = 0;
105 106
106 [XmlIgnore] public bool m_IsAttachment = false; 107 [XmlIgnore] public bool m_IsAttachment = false;
107 [XmlIgnore] public uint m_attachmentPoint = (byte)0; 108 [XmlIgnore] public uint m_attachmentPoint = (byte)0;
@@ -211,6 +212,12 @@ namespace OpenSim.Region.Environment.Scenes
211 get { return m_regionHandle; } 212 get { return m_regionHandle; }
212 set { m_regionHandle = value; } 213 set { m_regionHandle = value; }
213 } 214 }
215
216 public int ScriptAccessPin
217 {
218 get { return m_scriptAccessPin; }
219 set { m_scriptAccessPin = (int)value; }
220 }
214 221
215 public uint GetEffectiveObjectFlags() 222 public uint GetEffectiveObjectFlags()
216 { 223 {