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

llGetFreeMemory() public method

public llGetFreeMemory ( ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
        public LSL_Integer llGetFreeMemory()
        {
            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