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

llDetectedRot() public method

public llDetectedRot ( int number ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Quaternion
number int
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Quaternion
        public LSL_Rotation llDetectedRot(int number)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return new LSL_Rotation();

            DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_host.UUID, m_itemID, number);
            if (detectedParams == null)
                return new LSL_Rotation();
            return detectedParams.Rotation;
        }
LSL_Api