mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
616 B
Plaintext
28 lines
616 B
Plaintext
/*
|
|
* Author: bux578
|
|
* Adds a mapClick Eventhandler
|
|
*
|
|
* Arguments:
|
|
* 0: unit <OBJECT>
|
|
* 1: sides <ARRAY<OBJECT>>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [_unit, _sides] call ace_switchunits_fnc_addMapFunction
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", "_sides"];
|
|
|
|
["theMapClick", "onMapSingleClick", {
|
|
// IGNORE_PRIVATE_WARNING(_pos,_shift,_alt)
|
|
if (alive ACE_player && {GVAR(OriginalUnit) getVariable ["ACE_CanSwitchUnits", false]}) then {
|
|
[_this, _pos, _shift, _alt] call FUNC(handleMapClick);
|
|
};
|
|
|
|
}, [_unit, _sides]] call BIS_fnc_addStackedEventHandler;
|