2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2016-10-12 22:35:24 +00:00
|
|
|
/*
|
2023-09-09 16:30:39 +00:00
|
|
|
* Author: tcvm
|
2016-10-12 22:35:24 +00:00
|
|
|
* Attack profile: DIR
|
2021-04-13 05:14:22 +00:00
|
|
|
* Returns target position with no modifications
|
2016-10-12 22:35:24 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Seeker Target PosASL <ARRAY>
|
|
|
|
* 1: Guidance Arg Array <ARRAY>
|
|
|
|
* 2: Seeker State <ARRAY>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Missile Aim PosASL <ARRAY>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [[1,2,3], [], []] call ace_missileguidance_fnc_attackProfile_DIR;
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2021-04-13 05:14:22 +00:00
|
|
|
params ["_seekerTargetPos"];
|
|
|
|
_seekerTargetPos
|