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>
21 lines
370 B
Plaintext
21 lines
370 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Returns a value depending on current zoom level.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* Zoom <NUMBER>
|
|
*
|
|
* Example:
|
|
* [] call ace_common_fnc_getZoom
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
if (!hasInterface) exitWith {0};
|
|
|
|
(0.5 - ((worldToScreen positionCameraToWorld [0, 1, 1]) select 1)) * (getResolution select 5)
|