progressLoadingScreen: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
Line 5: Line 5:


|1.00|Game version=
|1.00|Game version=
|eff= loc |MP Effect=


|gr1= System |GROUP1=
|gr1= System |GROUP1=
Line 12: Line 14:
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''progressLoadingScreen''' progress |SYNTAX=
| [[progressLoadingScreen]] progress |SYNTAX=


|p1= progress: [[Number]] 0 to 1 |PARAMETER1=
|p1= progress: [[Number]] - in range 0..1 |PARAMETER1=
 
|p2= |PARAMETER2=
 
|p3= |PARAMETER3=
 
| [[Nothing]] |RETURNVALUE=  


| [[Nothing]] |RETURNVALUE=


|x1= <code>[[startLoadingScreen]] ["Loading My Mission"];
|x1= <code>[[startLoadingScreen]] ["Loading My Mission"];
//Batch of code
{{cc|}}
//Batch of code
{{cc|batch of code}}
//Batch of code
{{cc|}}
[[progressLoadingScreen]] 0.5;
[[progressLoadingScreen]] 0.25;
//Batch of code
{{cc|}}
//Batch of code
{{cc|batch of code}}
//Batch of code
{{cc|}}
[[endLoadingScreen]];</code>|EXAMPLE1=  
[[progressLoadingScreen]] 0.50;
 
{{cc|}}
{{cc|batch of code}}
{{cc|}}
[[progressLoadingScreen]] 0.95;
{{cc|}}
{{cc|batch of code}}
{{cc|}}
[[endLoadingScreen]];</code> |EXAMPLE1=  
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[startLoadingScreen]], [[endLoadingScreen]], [[progressPosition]] |SEEALSO=
| [[startLoadingScreen]], [[endLoadingScreen]], [[progressPosition]], [[BIS_fnc_progressLoadingScreen]] |SEEALSO=
 
|  |MPBEHAVIOUR=
____________________________________________________________________________________________
}}
}}


Line 49: Line 50:


<h3 style='display:none'>Bottom Section</h3>
<h3 style='display:none'>Bottom Section</h3>
 
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_System|{{uc:{{PAGENAME}}}}]]

Revision as of 12:43, 11 December 2020

-wrong parameter ("loceffect") defined!-
Hover & click on the images for description

Description

Description:
If loading screen is shown, sets progress bar to the given value (interval is from 0 to 1])
Groups:
System

Syntax

Syntax:
progressLoadingScreen progress
Parameters:
progress: Number - in range 0..1
Return Value:
Nothing

Examples

Example 1:
startLoadingScreen ["Loading My Mission"]; //  // batch of code //  progressLoadingScreen 0.25; //  // batch of code //  progressLoadingScreen 0.50; //  // batch of code //  progressLoadingScreen 0.95; //  // batch of code //  endLoadingScreen;

Additional Information

See also:
startLoadingScreenendLoadingScreenprogressPositionBIS_fnc_progressLoadingScreen

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section