2015-01-11 19:32:51 +00:00
|
|
|
/*
|
|
|
|
Author(s):
|
|
|
|
Garth de Wet (LH)
|
2015-01-11 23:13:47 +00:00
|
|
|
|
2015-01-11 19:32:51 +00:00
|
|
|
Description:
|
|
|
|
Hides the interaction helper text with the mouse buttons at the bottom middle of the screen
|
2015-01-11 23:13:47 +00:00
|
|
|
|
2015-01-11 19:32:51 +00:00
|
|
|
Parameters:
|
|
|
|
Nothing
|
2015-01-11 23:13:47 +00:00
|
|
|
|
2015-01-11 19:32:51 +00:00
|
|
|
Returns:
|
|
|
|
Nothing
|
2015-01-11 23:13:47 +00:00
|
|
|
|
2015-01-11 19:32:51 +00:00
|
|
|
Example:
|
2015-01-12 04:20:02 +00:00
|
|
|
call FUNC(hideMouseHint);
|
2015-01-11 19:32:51 +00:00
|
|
|
*/
|
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-01-11 19:32:51 +00:00
|
|
|
showHUD true;
|