ACE3/addons/spike/functions/fnc_keyDown.sqf

21 lines
313 B
Plaintext
Raw Normal View History

2021-12-12 03:55:03 +00:00
#include "script_component.hpp"
/*
* Author: Brandon (TCVM)
* Handle key presses
*
* Arguments:
* 0: Key Pressed <NUMBER>
* 1: Down <BOOL>
*
* Return Value:
* None
*
* Example:
* [5, true] call ace_spike_keyDown;
*
* Public: No
*/
params ["_key", "_down"];
_this call FUNC(camera_handleKeyPress);