ACE3/addons/ui/functions/fnc_handleSpeedIndicator.sqf

29 lines
691 B
Plaintext
Raw Normal View History

#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;