ACE3/addons/maptools/functions/fnc_calculateMapScale.sqf
Githawk 9cfa2f11d9 Stuff
Arguments, Return Value, (optional)
2016-06-06 20:42:20 +02:00

21 lines
440 B
Plaintext

/*
* Author: esteldunedain
* Returns the equivalent of 100m in screen coordinates
*
* Arguments:
* None
*
* Return Value:
* No
*
* Public: No
*/
#include "script_component.hpp"
private ["_screenOffset", "_pos"];
_pos = ((findDisplay 12) displayCtrl 51) ctrlMapScreenToWorld [0.5, 0.5];
_screenOffset = ((findDisplay 12) displayCtrl 51) posWorldToScreen [(_pos select 0) + 100, (_pos select 1)];
(_screenOffset select 0) - 0.5