Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llVolumeDetect C# (CSharp) Метод

llVolumeDetect() публичный Метод

public llVolumeDetect ( int detect ) : void
detect int
Результат void
        public void llVolumeDetect(int detect)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;

            if (m_host.ParentEntity != null)
            {
                if (!m_host.ParentEntity.IsDeleted)
                {
                    m_host.ParentEntity.RootChild.ScriptSetVolumeDetect(detect != 0);
                }
            }
        }
LSL_Api