mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ec09c2beda
* Remove parachute landing animation The vanilla animation has since been reworked and is an improvement. * Optimise altimeter code * Fix reserve chute handling and cutting action * Fix cut parachute action * Fix cut parachute action further - Prevent potential for action to be present when reserve is not available - Move cut parachute action to the parachute self actions rather than the player's * Revert number to string conversion
19 lines
312 B
Plaintext
19 lines
312 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" cutText ["","PLAIN",0,true];
|