Mantis#1612. Thank you, kindly, Matth for a patch that:

Adds the beginnints of llRemoteLoadScriptPin() and 
llSetRemoteScriptAccessPin().
This commit is contained in:
Charles Krinke
2008-06-27 02:22:33 +00:00
parent ca8d1d57e1
commit 3697e0898c
3 changed files with 148 additions and 2 deletions

View File

@@ -102,6 +102,7 @@ namespace OpenSim.Region.Environment.Scenes
[XmlIgnore] public scriptEvents m_aggregateScriptEvents=0;
[XmlIgnore] private LLObject.ObjectFlags LocalFlags = LLObject.ObjectFlags.None;
[XmlIgnore] public bool DIE_AT_EDGE = false;
[XmlIgnore] private int m_scriptAccessPin = 0;
[XmlIgnore] public bool m_IsAttachment = false;
[XmlIgnore] public uint m_attachmentPoint = (byte)0;
@@ -211,6 +212,12 @@ namespace OpenSim.Region.Environment.Scenes
get { return m_regionHandle; }
set { m_regionHandle = value; }
}
public int ScriptAccessPin
{
get { return m_scriptAccessPin; }
set { m_scriptAccessPin = (int)value; }
}
public uint GetEffectiveObjectFlags()
{