mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
276 B
Plaintext
23 lines
276 B
Plaintext
|
/*
|
||
|
|
||
|
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;
|
||
|
|
||
|
};
|
||
|
};
|