mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
247 B
Plaintext
14 lines
247 B
Plaintext
|
/*
|
||
|
* Author: KoffeinFlummi
|
||
|
*
|
||
|
* Returns [pitch, bank, yaw] for given vehicle in degrees.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: Unit/Vehicle
|
||
|
*
|
||
|
* Return Value:
|
||
|
* [pitch, bank, yaw]
|
||
|
*/
|
||
|
|
||
|
((_this select 0) call BIS_fnc_getPitchBank) + [getDir (_this select 0)]
|