OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.llMinEventDelay C# (CSharp) Method

llMinEventDelay() public method

public llMinEventDelay ( double delay ) : void
delay double
return void
        public void llMinEventDelay(double delay)
        {
            m_host.AddScriptLPS(1);
            try
            {
                m_ScriptEngine.SetMinEventDelay(m_item.ItemID, delay);
            }
            catch (NotImplementedException)
            {
                // Currently not implemented in DotNetEngine only XEngine
                NotImplemented("llMinEventDelay", "In DotNetEngine");
            }
        }
LSL_Api