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

llDetectedTouchST() public method

See http://wiki.secondlife.com/wiki/LlDetectedTouchST for details
public llDetectedTouchST ( int index ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
index int
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
        public LSL_Vector llDetectedTouchST(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.TouchST;
        }
LSL_Api