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

llDetectedTouchFace() public method

See http://wiki.secondlife.com/wiki/LlDetectedTouchFace for details
public llDetectedTouchFace ( int index ) : OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger
index int
return OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger
        public LSL_Integer llDetectedTouchFace(int index)
        {
            m_host.AddScriptLPS(1);
            DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, index);
            if (detectedParams == null)
                return new LSL_Integer(-1);
            return new LSL_Integer(detectedParams.TouchFace);
        }
LSL_Api