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
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_interaction_fnc_hideMouseHint
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-11 23:13:47 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-12 04:20:02 +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-05-09 02:47:15 +00:00
|
|
|
showHUD true;
|