mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
aea24c6de4
Need to implement a PID controller navigation type to get a correct attack angle
24 lines
656 B
Plaintext
24 lines
656 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Brandon (TCVM)
|
|
* Sets up wireGuided state arrays (called from missileGuidance's onFired).
|
|
*
|
|
* Arguments:
|
|
* Guidance Arg Array <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_missileguidance_fnc_wire_onFired
|
|
*
|
|
* Public: No
|
|
*/
|
|
params ["_firedEH", "", "", "", "_stateParams", "", ""];
|
|
_stateParams params ["", "", "_attackProfileStateParams"];
|
|
_firedEH params ["_shooter","","","","_ammo","","_projectile"];
|
|
|
|
_attackProfileStateParams set [0, [] call FUNC(gps_getAttackData)];
|
|
_attackProfileStateParams set [1, (getPosASL _projectile) select 2];
|
|
_attackProfileStateParams set [2, false];
|