2015-02-21 20:11:03 +00:00
|
|
|
/*
|
|
|
|
* Author: NouberNou
|
|
|
|
* Handle interaction key up
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* true <BOOL>
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
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-27 04:55:16 +00:00
|
|
|
[GVAR(selectedTarget), ACE_player] call GVAR(selectedAction);
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|
|
|
|
GVAR(expanded) = false;
|
|
|
|
GVAR(lastPath) = [];
|
|
|
|
GVAR(menuDepthPath) = [];
|
|
|
|
true
|