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>
31 lines
681 B
Plaintext
31 lines
681 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: PabstMirror
|
|
* Handles the double tapping either of the 2 mini-maps
|
|
*
|
|
* Arguments:
|
|
* 0: The Map <CONTROL>
|
|
* 1: MouseButton <NUMBER>
|
|
* 2: MousePosX <NUMBER>
|
|
* 3: MousePosY <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [minimap,0,0.5,0.5] call ace_microdagr_fnc_mapDoubleTapEH
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_theMap", "_mouseButton", "_xPos", "_yPos"];
|
|
|
|
//Only handle LMB
|
|
if (_mouseButton != 0) exitWith {};
|
|
|
|
private _worldPos = _theMap ctrlMapScreenToWorld [_xPos, _yPos];
|
|
_worldPos pushBack (getTerrainHeightASL _worldPos);
|
|
|
|
GVAR(newWaypointPosition) = _worldPos;
|
|
[APP_MODE_MARK] call FUNC(saveCurrentAndSetNewMode);
|