SeekTracer: Difference between revisions
From Eternity Wiki
Jump to navigationJump to search
(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...") |
(No difference)
|
Latest revision as of 14:43, 20 October 2024
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.