mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
25 lines
380 B
Plaintext
25 lines
380 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: esteldunedain
|
|
* Converts Arma "Position" to ASL
|
|
*
|
|
* Arguments:
|
|
* 0: position x <Number>
|
|
* 1: position y <Number>
|
|
* 2: position z <Number>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [1, 1, 1] call ace_common_fnc_positionToASL
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
if (surfaceIsWater _this) then {
|
|
_this
|
|
} else {
|
|
ATLtoASL _this
|
|
};
|