SeekTracer

From Eternity Wiki
Revision as of 13:43, 20 October 2024 by Printz (talk | contribs) (Created page with "{{codepointer|description=Generic seeker missile function. |usage='''A_SeekTracer'''(''angle_threshold'', ''max_turn'') |parameters= *''angle_threshold'': if angle to target is lower than this, missile will 'snap' directly to face the target (degrees) *''max_turn'': maximum angle a missile will turn towards the target if angle is above the threshold (degrees) |notes= This is similar to HticTracer, except that it's not limited on the Z velocity update the same way as...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Description

Generic seeker missile function.

Usage

A_SeekTracer(angle_threshold, max_turn)

Parameters

  • angle_threshold: if angle to target is lower than this, missile will 'snap' directly to face the target (degrees)
  • max_turn: maximum angle a missile will turn towards the target if angle is above the threshold (degrees)

Examples

No examples given.

Notes

This is similar to HticTracer, except that it's not limited on the Z velocity update the same way as nitrogolem skulls.

See also