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

llSetSoundQueueing() public method

public llSetSoundQueueing ( int queue ) : void
queue int
return void
        public void llSetSoundQueueing(int queue)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;

            m_host.SetSoundQueueing(queue);
        }
LSL_Api