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

llDetectedGrab() public method

public llDetectedGrab ( int number ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
number int
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
        public LSL_Vector llDetectedGrab(int number)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return new LSL_Vector();

            DetectParams parms = m_ScriptEngine.GetDetectParams(m_host.UUID, m_itemID, number);
            if (parms == null)
                return new LSL_Vector(0, 0, 0);

            return parms.OffsetPos;
        }
LSL_Api