Files
Benjamin Kyd c8014ec81e initial commit
2019-06-05 00:45:50 +01:00

15 lines
340 B
Plaintext

/*
File: fn_progressBar.sqf
Author: Bryan "Tonic" Boardwine
Description:
Initializes the progress bar.
*/
disableSerialization;
private ["_ui","_progress"];
"progressBar" cutRsc ["life_progress","PLAIN"];
_ui = uiNameSpace getVariable "life_progress";
_progress = _ui displayCtrl 38201;
_progress progressSetPosition 0.5;