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

llMinEventDelay() public method

public llMinEventDelay ( double delay ) : void
delay double
return void
        public void llMinEventDelay(double delay)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;

            m_ScriptEngine.SetMinEventDelay(m_itemID, m_host.UUID, delay);
        }
LSL_Api