ACE3/addons/interact_menu/functions/fnc_keyUp.sqf

16 lines
373 B
Plaintext
Raw Normal View History

2015-02-19 13:36:59 +00:00
//fnc_keyUpSelfAction.sqf
2015-01-18 18:38:27 +00:00
#include "script_component.hpp"
GVAR(keyDown) = false;
if(GVAR(actionSelected)) then {
2015-02-19 13:49:36 +00:00
this = GVAR(selectedTarget);
2015-01-18 18:38:27 +00:00
_player = ACE_Player;
_target = GVAR(selectedTarget);
2015-02-19 13:49:36 +00:00
[GVAR(selectedTarget), player] call GVAR(selectedAction);
2015-01-18 18:38:27 +00:00
};
GVAR(expanded) = false;
GVAR(lastPath) = [];
GVAR(menuDepthPath) = [];
GVAR(vecLineMap) = [];
true