ACE3/addons/spectator/functions/fnc_ui_handleKeyUp.sqf
SilentSpike d3ce75daef Spectator overhaul (#5171)
- Overhauls the spectator module entirely to share a similar UX to BI's "End Game Spectator" while maintaining some of the extended flexibility of ACE Spectator.
- Simplifies spectator setup by reducing the number of settings. More advanced setup is still possible via the API functions provided.
2017-08-12 14:25:48 +01:00

32 lines
565 B
Plaintext

/*
* Author: Nelson Duarte, SilentSpike
* 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
*/
#include "script_component.hpp"
#include "\A3\ui_f\hpp\defineDIKCodes.inc"
params ["","_key","_shift","_ctrl","_alt"];
if (_key == DIK_LALT) exitWith {
[false] call FUNC(cam_toggleSlow);
true
};
false