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

llDetectedTouchUV() public method

See http://wiki.secondlife.com/wiki/LlDetectedTouchUV for details
public llDetectedTouchUV ( int index ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
index int
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
        public LSL_Vector llDetectedTouchUV(int index)
        {
            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, index);
            if (detectedParams == null)
                return new LSL_Vector(-1.0, -1.0, 0.0);
            return detectedParams.TouchUV;
        }
LSL_Api