ACE3/addons/interaction/functions/fnc_hideMouseHint.sqf

24 lines
477 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-01-11 19:32:51 +00:00
/*
* Author: Garth de Wet (LH)
2018-11-01 17:46:46 +00:00
* Hides the interaction hint for mouse buttons.
*
* Arguments:
* None
*
2016-06-18 09:50:41 +00:00
* Return Value:
* None
*
* Example:
2018-11-01 17:46:46 +00:00
* [] call ace_interaction_fnc_hideMouseHint
*
* Public: No
*/
2015-01-11 23:13:47 +00:00
2018-11-01 17:46:46 +00:00
(QGVAR(RscMouseHint) call BIS_fnc_rscLayer) cutFadeOut 0.2;
// Re-enable action menu
inGameUISetEventHandler ["PrevAction", "false"];
inGameUISetEventHandler ["NextAction", "false"];
inGameUISetEventHandler ["Action", "false"];