ACE3/addons/ui/functions/fnc_handleSpeedIndicator.sqf
Filip Maciejewski d0fd45e220
UI - Infantry speed indictator (#8384)
Co-authored-by: jonpas <jonpas33@gmail.com>
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2021-10-05 18:47:24 +02:00

29 lines
688 B
Plaintext

#include "script_component.hpp"
/*
* Author: veteran29
* Handles visual changes of the speed indicator.
*
* Arguments:
* Current animation state <STRING>
*
* Return Value:
* None
*
* Example:
* ["amovpercmtacslowwrfldf_ver2"] call ace_ui_fnc_handleSpeedIndicator
*
* Public: No
*/
params ["_animState"];
if (!GVAR(enableSpeedIndicator)) exitWith {};
private _animSpeed = _animState select [9, 3];
private _isProne = _animState select [5, 3] isEqualTo "pne";
private _icon = GVAR(speedIndicatorIconHash) getOrDefault [[_animSpeed, _isProne], ""];
private _speedIndicator = uiNamespace getVariable [QGVAR(speedIndicator), controlNull];
_speedIndicator ctrlSetText _icon;