Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llGetMemoryLimit C# (CSharp) Method

llGetMemoryLimit() public method

public llGetMemoryLimit ( ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
        public LSL_Integer llGetMemoryLimit()
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID))
                return new LSL_Integer();

            // Make scripts designed for LSO happy
            return 16384;
        }
LSL_Api