BIS fnc EXP camp playSubtitles: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (template:command argument fix)
m (template:command argument fix)
Line 16: Line 16:




|p1= Array [[Array]] - Array containing all infos for the first subtitle |= Parameter 1
|p1= Array [[Array]] - Array containing all infos for the first subtitle |PARAMETER1=
*|p2= Array select 0 [[String]] - Name of the speaker |= Parameter 2
*|p2= Array select 0 [[String]] - Name of the speaker |PARAMETER2=
*|p3= Array select 1 [[String]] - Subtitle |= Parameter 3
*|p3= Array select 1 [[String]] - Subtitle |PARAMETER3=
*|p4= Array select 2 [[Number]] - Time at which the subtitle is played |= Parameter 4
*|p4= Array select 2 [[Number]] - Time at which the subtitle is played |PARAMETER4=


| [[Bool]] - True if sucessful, false if not |= return
| [[Bool]] - True if sucessful, false if not |= return
Line 26: Line 26:
|x1= <code>[  
|x1= <code>[  
   ["CROSSROAD","Mission is a go, I repeat, mission is a go! Crossroad, out.",0]  
   ["CROSSROAD","Mission is a go, I repeat, mission is a go! Crossroad, out.",0]  
] [[spawn]] [[BIS_fnc_EXP_camp_playSubtitles]];//Shows a subtitle immediately</code> |= Example 1
] [[spawn]] [[BIS_fnc_EXP_camp_playSubtitles]];//Shows a subtitle immediately</code> |EXAMPLE1=
|x2= <code>[  
|x2= <code>[  
   ["Speaker1","Subtitle1",0],  
   ["Speaker1","Subtitle1",0],  
Line 32: Line 32:
   ["Speaker3","Subtitle3",10],  
   ["Speaker3","Subtitle3",10],  
   ["Speaker4","Subtitle5",15]  
   ["Speaker4","Subtitle5",15]  
] [[spawn]] [[BIS_fnc_EXP_camp_playSubtitles]]; //Displays 4 subtitles, with 5 seconds in between them</code> |= Example 2
] [[spawn]] [[BIS_fnc_EXP_camp_playSubtitles]]; //Displays 4 subtitles, with 5 seconds in between them</code> |EXAMPLE2=


____________________________________________________________________________________________
____________________________________________________________________________________________

Revision as of 15:30, 7 April 2019


Hover & click on the images for description

Description

Description:
Displays the given subtitles at the correctly defined moments. Each array added to the parameters represents one subtitle. Template:note
Execution:
spawn
Groups:
Uncategorised

Syntax

Syntax:
[ [Array] ] spawn BIS_fnc_EXP_camp_playSubtitles;
Parameters:
Array Array - Array containing all infos for the first subtitle
Array select 0 String - Name of the speaker
Array select 1 String - Subtitle
Array select 2 Number - Time at which the subtitle is played
Return Value:
Bool - True if sucessful, false if not

Examples

Example 1:
[ ["CROSSROAD","Mission is a go, I repeat, mission is a go! Crossroad, out.",0] ] spawn BIS_fnc_EXP_camp_playSubtitles;//Shows a subtitle immediately
Example 2:
[ ["Speaker1","Subtitle1",0], ["Speaker2","Subtitle2",5], ["Speaker3","Subtitle3",10], ["Speaker4","Subtitle5",15] ] spawn BIS_fnc_EXP_camp_playSubtitles; //Displays 4 subtitles, with 5 seconds in between them

Additional Information

See also:
BIS_fnc_showSubtitle

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