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