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

llRotTarget() public method

public llRotTarget ( Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Quaternion rot, double error ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
rot Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Quaternion
error double
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
        public LSL_Integer llRotTarget(LSL_Rotation rot, double error)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return 0;

            return m_host.registerRotTargetWaypoint(new Quaternion((float)rot.x, (float)rot.y, (float)rot.z, (float)rot.s), (float)error);
        }
LSL_Api