mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22b4788891
* added movable markers option * added restrictions * added local events * formatting + small fixes * Events for start and end modified + small adjusts * minor fixes * lazy eval * Alt as modifier key * Update XEH_postInit.sqf * Skip UI EH on headless
22 lines
413 B
Plaintext
22 lines
413 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>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [CONTROL, 2] call ace_markers_fnc_onMouseButtonUpMap
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_mapCtrl", "_button"];
|
|
|
|
player setVariable [QGVAR(moveInProgress), false];
|