ACE3/addons/markers/functions/fnc_onMouseButtonUp.sqf
commy2 3c41d37417 overhaul movable markers (#5922)
* overhaul movable markers

* moving markers setting

* disable debug

* fix conflict with map gestures
2018-01-05 18:55:00 +01:00

27 lines
562 B
Plaintext

/*
* Author: chris579
* Triggered when a mouse button is released on the map.
*
* Arguments:
* 0: Map Control the evh was assigned to <CONTROL>
* 1: Button code <NUMBER>
* 2: Position of x <NUMBER>
* 3: Position of y <NUMBER>
* 4: State of Shift <BOOL>
* 5: State of Ctrl <BOOL>
* 6: State of Alt <BOOL>
*
* Return Value:
* None
*
* Example:
* [CONTROL, 2] call ace_markers_fnc_onMouseButtonUpMap
*
* Public: No
*/
#include "script_component.hpp"
params ["_ctrlMap", "_button", "_x", "_y", "_shift", "_ctrl", "_alt"];
GVAR(moving) = false;