ACE3/addons/vector/functions/fnc_onKeyUp.sqf

23 lines
276 B
Plaintext
Raw Normal View History

2015-01-15 06:18:57 +00:00
/*
by commy2
Handles releasing the special vector keys.
*/
#include "script_component.hpp"
switch (_this select 0) do {
case ("azimuth"): {
GVAR(isKeyDownAzimuth) = false;
};
case ("distance"): {
GVAR(isKeyDownDistance) = false;
};
};