BIS fnc customGPSVideo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *arma2oa * +\| *1.([0-9]{2}) * *\|([^g]|g[^a])" to "| arma2oa |1.$1 |game2= tkoh |version2= 1.00 |game3= arma3 |version3= 0.50 |$2")
m (Fix)
 
(19 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=function
{{RV|type=function


| arma2oa
|game1= arma2oa
|1.56
|version1= 1.56


|game2= tkoh
|game2= tkoh
Line 14: Line 14:
|eff= local
|eff= local


| Plays in-game video in GPS frame.<br>
|descr= Plays in-game video in GPS frame.<br>
If [[BIS fnc customGPS]] changed GPS texture, it is used.<br>
If [[BIS_fnc_customGPS]] changed the GPS texture, it is used. GPS GUI layer is {{hl|19}}.
GPS GUI layer is <tt>19</tt>.
{{Feature|arma3|Does not work in {{arma3}}. See [[BIS_fnc_playVideo]] instead.}}


|s1=[path, ''sizeCoef''] spawn [[BIS_fnc_customGPSvideo]]
|s1= [path, sizeCoef] spawn '''BIS_fnc_customGPSVideo'''


|p1= path: [[String]] - full path to image file
|p1= path: [[String]] - full path to image file


|p2= sizeCoef ''(Optional)'': [[Number]] - screen size coeficient (default is 1)
|p2= sizeCoef: [[Number]] - (Optional, default 1) screen size coefficient


| [[Script_(Handle)|Script]] - script which terminates itself once video ends
|r1= [[Script Handle]] - script which terminates itself once video ends


|x1= <code>_script = ["\ca\video_pmc\CP00_Reynolds_b.ogv",1.04] [[spawn]] [[BIS_fnc_customGPSvideo]];
|x1= <sqf>
[[waitUntil]] {[[scriptDone]] _script};</code>
private _script = ["\ca\video_pmc\CP00_Reynolds_b.ogv", 1.04] spawn BIS_fnc_customGPSVideo;
waitUntil { scriptDone _script };
</sqf>


|exec= spawn
|exec= spawn


|seealso= [[Functions Library]]
|seealso= [[BIS_fnc_playVideo]] [[BIS_fnc_customGPS]]
}}
}}
[[Category:{{Name|arma2oa}}: Functions|{{uc:customGPSvideo}}]]
[[Category:{{Name|tkoh}}: Functions|{{uc:customGPSvideo}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:customGPSvideo}}]]

Latest revision as of 11:31, 16 July 2024

Hover & click on the images for description

Description

Description:
Plays in-game video in GPS frame.
If BIS_fnc_customGPS changed the GPS texture, it is used. GPS GUI layer is 19.
Arma 3
Does not work in Arma 3. See BIS_fnc_playVideo instead.
Execution:
spawn
Groups:
GUI

Syntax

Syntax:
[path, sizeCoef] spawn BIS_fnc_customGPSVideo
Parameters:
path: String - full path to image file
sizeCoef: Number - (Optional, default 1) screen size coefficient
Return Value:
Script Handle - script which terminates itself once video ends

Examples

Example 1:
private _script = ["\ca\video_pmc\CP00_Reynolds_b.ogv", 1.04] spawn BIS_fnc_customGPSVideo; waitUntil { scriptDone _script };

Additional Information

See also:
BIS_fnc_playVideo BIS_fnc_customGPS

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