mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
24 lines
480 B
Plaintext
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"];
|