Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llDetectedTouchNormal C# (CSharp) Метод

llDetectedTouchNormal() публичный Метод

See http://wiki.secondlife.com/wiki/LlDetectedTouchNormal for details
public llDetectedTouchNormal ( int index ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
index int
Результат Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
        public LSL_Vector llDetectedTouchNormal(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();
            return detectedParams.TouchNormal;
        }
LSL_Api