mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
73215b707d
And change map tools key to ALT from CTRL
19 lines
420 B
Plaintext
19 lines
420 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
* Returns the equivalent of 100m in screen coordinates
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return value:
|
|
* No
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private _pos = ((findDisplay 12) displayCtrl 51) ctrlMapScreenToWorld [0.5, 0.5];
|
|
private _screenOffset = ((findDisplay 12) displayCtrl 51) posWorldToScreen [(_pos select 0) + 100, (_pos select 1)];
|
|
|
|
(_screenOffset select 0) - 0.5
|