2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 19:32:51 +00:00
|
|
|
/*
|
2015-05-09 02:47:15 +00:00
|
|
|
* Author: Garth de Wet (LH)
|
|
|
|
* Hides the interaction helper text with the mouse buttons at the bottom middle of the screen
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-05-09 02:47:15 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_interaction_fnc_hideMouseHint
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-11 23:13:47 +00:00
|
|
|
|
2015-09-26 01:16:55 +00:00
|
|
|
if (isNull (uiNamespace getVariable ["ACE_Helper_Display", objNull])) exitWith {};
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-01-14 13:11:46 +00:00
|
|
|
(QGVAR(InteractionHelper) call BIS_fnc_rscLayer) cutText ["", "PLAIN"];
|
2015-09-26 01:16:55 +00:00
|
|
|
|
2017-09-19 19:00:22 +00:00
|
|
|
// Re-enable action menu
|
2016-03-06 15:47:46 +00:00
|
|
|
inGameUISetEventHandler ["PrevAction", "false"];
|
|
|
|
inGameUISetEventHandler ["NextAction", "false"];
|
|
|
|
inGameUISetEventHandler ["Action", "false"];
|