mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
618 B
Plaintext
31 lines
618 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Handles right clicking on the map ('dragging' the map)
|
|
* Release autotrack if enabled.
|
|
*
|
|
* Arguments:
|
|
* 0: The Map <CONTROL>
|
|
* 1: MouseButton <NUMBER>
|
|
* 2: MousePosX <NUMBER>
|
|
* 3: MousePosY <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* [minimap,0,0.5,0.5] call ace_microdagr_fnc_mapButtonDownEH
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PARAMS_4(_theMap,_mouseButton,_xPos,_yPos);
|
|
|
|
//Only handle RMB
|
|
if (_mouseButton != 1) exitWith {};
|
|
|
|
if (GVAR(mapAutoTrackPosition)) then {
|
|
GVAR(mapAutoTrackPosition) = false;
|
|
[] call FUNC(showApplicationPage);
|
|
};
|