SeekerMissile: Difference between revisions

From Eternity Wiki
Jump to navigationJump to search
(Created page with "{{codepointer|Generic seeker missile, based on ZDoom rules. |usage='''A_SeekerMissile'''(''threshold'', ''max_turn_angle'', ''flags'', ''acquire_chance'', ''acquire_distance'') |parameters= *''threshold'': Angle turning threshold. If necessary angle to turn to target is beyond this, it will turn at half the rate towards it (default 90, limited to 0-90). *''max_turn_angle'': Rate of angle to turn (default 90, limited to 0-90). *''flags'': can be '''normal''' (which implie...")
 
No edit summary
Line 12: Line 12:
|seealso=
|seealso=
*[[HticTracer]]
*[[HticTracer]]
*[[GenTracer]]
*[[GenTracer]]}}

Revision as of 15:27, 27 October 2024

Description

{{{description}}}

Usage

A_SeekerMissile(threshold, max_turn_angle, flags, acquire_chance, acquire_distance)

Parameters

  • threshold: Angle turning threshold. If necessary angle to turn to target is beyond this, it will turn at half the rate towards it (default 90, limited to 0-90).
  • max_turn_angle: Rate of angle to turn (default 90, limited to 0-90).
  • flags: can be normal (which implies nothing), or a combination (joined by "

Examples

No examples given.

Notes

No particular notes.

See also