ACE3/addons/interaction/functions/fnc_hideMouseHint.sqf

22 lines
460 B
Plaintext
Raw Normal View History

2015-01-11 19:32:51 +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"
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"];
showHUD true;