mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
348 B
Plaintext
20 lines
348 B
Plaintext
/*
|
|
Name: ACE_Parachute_fnc_hideAltimeter
|
|
|
|
Author: Garth de Wet (LH)
|
|
|
|
Description:
|
|
Removes the altimeter from the screen.
|
|
|
|
Parameters:
|
|
|
|
Returns:
|
|
Nothing
|
|
|
|
Example:
|
|
call ACE_Parachute_fnc_hideAltimeter
|
|
*/
|
|
#include "script_component.hpp"
|
|
GVAR(AltimeterActive) = false;
|
|
(["ACE_Altimeter"] call BIS_fnc_rscLayer) cutText ["","PLAIN",0,true];
|