2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-01-11 19:32:51 +00:00
|
|
|
/*
|
2015-05-09 02:47:15 +00:00
|
|
|
* Author: Garth de Wet (LH)
|
2018-11-01 17:46:46 +00:00
|
|
|
* Hides the interaction hint for mouse buttons.
|
2015-05-09 02:47:15 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-05-09 02:47:15 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2018-11-01 17:46:46 +00:00
|
|
|
* [] call ace_interaction_fnc_hideMouseHint
|
2015-05-09 02:47:15 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-11 23:13:47 +00:00
|
|
|
|
2018-11-01 17:46:46 +00:00
|
|
|
(QGVAR(RscMouseHint) call BIS_fnc_rscLayer) cutFadeOut 0.2;
|
2015-09-26 01:16:55 +00:00
|
|
|
|
2017-09-19 19:00:22 +00:00
|
|
|
// Re-enable action menu
|
2016-03-06 15:47:46 +00:00
|
|
|
inGameUISetEventHandler ["PrevAction", "false"];
|
|
|
|
inGameUISetEventHandler ["NextAction", "false"];
|
|
|
|
inGameUISetEventHandler ["Action", "false"];
|