2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2019-03-21 13:52:32 +00:00
|
|
|
#include "\a3\ui_f\hpp\defineDIKCodes.inc"
|
2017-08-12 13:25:48 +00:00
|
|
|
/*
|
2023-08-17 10:02:17 +00:00
|
|
|
* Author: Nelson Duarte, kymckay
|
2017-08-12 13:25:48 +00:00
|
|
|
* Function used to handle key up event
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Spectator display <DISPLAY>
|
|
|
|
* 1: Key DIK code <NUMBER>
|
|
|
|
* 2: State of shift <BOOL>
|
|
|
|
* 3: State of ctrl <BOOL>
|
|
|
|
* 4: State of alt <BOOL>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* _this call ace_spectator_fnc_ui_handleKeyUp
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["","_key","_shift","_ctrl","_alt"];
|
|
|
|
|
|
|
|
if (_key == DIK_LALT) exitWith {
|
|
|
|
[false] call FUNC(cam_toggleSlow);
|
|
|
|
true
|
|
|
|
};
|
|
|
|
|
|
|
|
false
|