OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.llDetectedTouchUV C# (CSharp) Method

llDetectedTouchUV() public method

See http://wiki.secondlife.com/wiki/LlDetectedTouchUV for details
public llDetectedTouchUV ( int index ) : OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3
index int
return OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3
        public LSL_Vector llDetectedTouchUV(int index)
        {
            m_host.AddScriptLPS(1);
            DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, index);
            if (detectedParams == null)
                return new LSL_Vector(-1.0, -1.0, 0.0);
            return detectedParams.TouchUV;
        }
LSL_Api