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

llDetectedPos() public method

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

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