Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llSetSoundQueueing C# (CSharp) 메소드

llSetSoundQueueing() 공개 메소드

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

            m_host.SetSoundQueueing(queue);
        }
LSL_Api