ACE3/addons/common/functions/fnc_getWeaponAzimuthAndInclination.sqf

26 lines
518 B
Plaintext
Raw Normal View History

/*
* Author: commy2
2015-09-21 11:08:10 +00:00
* Get local players weapon direction and slope.
*
2015-09-21 11:08:10 +00:00
* Arguments:
* 0: Weapon name <STRING>
*
2015-09-21 11:08:10 +00:00
* Return Value:
* 0: Azimuth <NUMBER>
* 1: Inclination <NUMBER>
*
2015-09-21 11:08:10 +00:00
* Public: Yes
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
2015-09-21 11:08:10 +00:00
params ["_weapon"];
private _direction = ACE_player weaponDirection _weapon;
private _azimuth = (_direction select 0) atan2 (_direction select 1);
private _inclination = asin (_direction select 2);
if (_azimuth < 0) then {_azimuth = _azimuth + 360};
[_azimuth, _inclination]