1
0
mirror of https://github.com/acemod/ACE3.git synced 2024-08-30 18:23:18 +00:00
ACE3/addons/interaction/functions/fnc_hideMouseHint.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes ()
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

24 lines
480 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Garth de Wet (LH)
* Hides the interaction hint for mouse buttons.
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* [] call ace_interaction_fnc_hideMouseHint
*
* Public: No
*/
(QGVAR(RscMouseHint) call BIS_fnc_rscLayer) cutFadeOut 0.2;
// Re-enable action menu
inGameUISetEventHandler ["PrevAction", "false"];
inGameUISetEventHandler ["NextAction", "false"];
inGameUISetEventHandler ["Action", "false"];