mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d0fd45e220
Co-authored-by: jonpas <jonpas33@gmail.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
29 lines
688 B
Plaintext
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;
|