mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
387 B
Plaintext
23 lines
387 B
Plaintext
/*
|
|
* Author: Garth de Wet (LH)
|
|
* Closes the Interaction menu
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ace_interaction_fnc_hideMenu
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
closeDialog 0;
|
|
(findDisplay 1713999) closeDisplay 1;
|
|
(uiNameSpace getVariable QGVAR(Flow_Display)) closeDisplay 0;
|
|
GVAR(MainButton) = nil;
|
|
call FUNC(hideMouseHint);
|