15 lines
340 B
Plaintext
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;
|