ACE3/addons/interaction/functions/fnc_hideMouseHint.sqf

22 lines
432 B
Plaintext
Raw Normal View History

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:
call FUNC(hideMouseHint);
2015-01-11 19:32:51 +00:00
*/
2015-01-11 23:13:47 +00:00
#include "script_component.hpp"
if (isNull (uiNamespace getVariable ["ACE_Helper_Display", objNull])) exitWith{};
2015-01-11 19:32:51 +00:00
(QGVAR(InteractionHelper) call BIS_fnc_rscLayer) cutText ["", "PLAIN"];
2015-01-11 19:32:51 +00:00
showHUD true;