mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
459 B
Plaintext
22 lines
459 B
Plaintext
|
/*
|
||
|
Name: AGM_Interaction_fnc_hideMouseHint
|
||
|
|
||
|
Author(s):
|
||
|
Garth de Wet (LH)
|
||
|
|
||
|
Description:
|
||
|
Hides the interaction helper text with the mouse buttons at the bottom middle of the screen
|
||
|
|
||
|
Parameters:
|
||
|
Nothing
|
||
|
|
||
|
Returns:
|
||
|
Nothing
|
||
|
|
||
|
Example:
|
||
|
call AGM_Interaction_fnc_hideMouseHint;
|
||
|
*/
|
||
|
if (isNull (uiNamespace getVariable ["AGM_Helper_Display", objNull])) exitWith{};
|
||
|
|
||
|
("AGM_InteractionHelper" call BIS_fnc_rscLayer) cutText ["", "PLAIN"];
|
||
|
showHUD true;
|