mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
338 B
Plaintext
19 lines
338 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Removes the altimeter from the screen.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ACE_Parachute_fnc_hideAltimeter
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
GVAR(AltimeterActive) = false;
|
|
(["ACE_Altimeter"] call BIS_fnc_rscLayer) cutText ["","PLAIN",0,true];
|