mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
674 B
Plaintext
26 lines
674 B
Plaintext
/*
|
|
* 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
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if (isNull (uiNamespace getVariable ["ACE_Helper_Display", objNull])) exitWith {};
|
|
|
|
(QGVAR(InteractionHelper) call BIS_fnc_rscLayer) cutText ["", "PLAIN"];
|
|
|
|
// Disable action menu, showHud also disables all scripted UI (such as drawIcon3D)
|
|
inGameUISetEventHandler ["PrevAction", "false"];
|
|
inGameUISetEventHandler ["NextAction", "false"];
|
|
inGameUISetEventHandler ["Action", "false"];
|