HticTracer: Difference between revisions

From Eternity Wiki
Jump to navigationJump to search
(New page: Usage: HticTracer(threshold, maxturn) Threshold and maxturn are integer values in angle dimensions. A projectile running this codepointer will home into the target in Heretic style. It's ...)
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
Usage: HticTracer(threshold, maxturn)
{{codepointer
 
|description=Heretic-specific homing projectile, with the same weaknesses as the nitrogolem skull projectile.
Threshold and maxturn are integer values in angle dimensions. A projectile running this codepointer will home into the target in Heretic style. It's angle difference has to be smaller than threshold to home completely. Otherwise, it will only be able to spin by maxturn degrees. Also, homing vertically will only happen if the height difference is significant.
|usage='''HticTracer'''(''threshold'', ''maxturn'')
 
|parameters=
==See also==
''Threshold'' and ''maxturn'' are integer values in angle dimensions.
*[[List of codepointers]]
|notes=A projectile running this codepointer will home into the target in Heretic style. Its angle difference to its target has to be smaller than ''threshold'' to home completely. Otherwise, it will only be able to spin by ''maxturn'' degrees. Also, homing vertically will only happen if the height difference is significant.
 
|seealso=
[[Category:Codepointers]]
*[[GenTracer]]
*[[Tracer]]
*[[WhirlwindSeek]]}}

Latest revision as of 11:33, 26 April 2020

Description

Heretic-specific homing projectile, with the same weaknesses as the nitrogolem skull projectile.

Usage

HticTracer(threshold, maxturn)

Parameters

Threshold and maxturn are integer values in angle dimensions.

Examples

No examples given.

Notes

A projectile running this codepointer will home into the target in Heretic style. Its angle difference to its target has to be smaller than threshold to home completely. Otherwise, it will only be able to spin by maxturn degrees. Also, homing vertically will only happen if the height difference is significant.

See also