BIS fnc textTiles: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (call to spawn)
m (template:command argument fix)
Line 8: Line 8:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Show animated text with background tiles. Can be used to display mission name.[[File:BIS fnc textTiles.gif|left|400px]]|= Description
| Show animated text with background tiles. Can be used to display mission name.[[File:BIS fnc textTiles.gif|left|400px]]|DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [''content'', ''position'', ''tileSize'', ''duration'', ''fadeInOutTime'', ''tileTransparency''] spawn [[BIS_fnc_textTiles]] |= Syntax
| [''content'', ''position'', ''tileSize'', ''duration'', ''fadeInOutTime'', ''tileTransparency''] spawn [[BIS_fnc_textTiles]] |SYNTAX=


|p1= content: [[String]] (picture path) or [[Structured Text]] |= Parameter 1
|p1= content: [[String]] (picture path) or [[Structured Text]] |PARAMETER1=
|p2= position: [[Boolean]] optional, default [0,0,1,1] (true = "mission" area in layout options, false = full screen) or [[Array]] (format [X, Y, Width, Height]) |= Parameter 2
|p2= position: [[Boolean]] optional, default [0,0,1,1] (true = "mission" area in layout options, false = full screen) or [[Array]] (format [X, Y, Width, Height]) |PARAMETER2=
|p3= tileSize: [[Number]] or [[Array]] optional, default 10 ([10,10]) (format [Width, Height]) |= Parameter 3
|p3= tileSize: [[Number]] or [[Array]] optional, default 10 ([10,10]) (format [Width, Height]) |PARAMETER3=
|p4= duration: [[Number]] optional, default 5 (in seconds) |= Parameter 4
|p4= duration: [[Number]] optional, default 5 (in seconds) |PARAMETER4=
|p5= fadeInOutTime: [[Number]] or [[Array]] [fadeIn, fadeOut] optional, default 0 (in seconds) |= Parameter 5
|p5= fadeInOutTime: [[Number]] or [[Array]] [fadeIn, fadeOut] optional, default 0 (in seconds) |PARAMETER5=
|p6= tileTransparency: [[Number]] optional, default 0.3, '''Where 0 is invisible and 1 is visible, more like an alpha value''' |= Parameter 6
|p6= tileTransparency: [[Number]] optional, default 0.3, '''Where 0 is invisible and 1 is visible, more like an alpha value''' |PARAMETER6=


|exec= spawn |= Execution
|exec= spawn |= Execution


| [[Boolean]] |= Return value
| [[Boolean]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 29: Line 29:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[BIS_fnc_dynamicText]], [[BIS_fnc_infoText]], [[BIS_fnc_typeText]], [[BIS_fnc_typeText2]], [[BIS_fnc_EXP_camp_SITREP]]  |= See also
| [[BIS_fnc_dynamicText]], [[BIS_fnc_infoText]], [[BIS_fnc_typeText]], [[BIS_fnc_typeText2]], [[BIS_fnc_EXP_camp_SITREP]]  |SEEALSO=


}}
}}

Revision as of 15:34, 7 April 2019


Hover & click on the images for description

Description

Description:
Show animated text with background tiles. Can be used to display mission name.
BIS fnc textTiles.gif
Execution:
spawn
Groups:
Uncategorised

Syntax

Syntax:
[content, position, tileSize, duration, fadeInOutTime, tileTransparency] spawn BIS_fnc_textTiles
Parameters:
content: String (picture path) or Structured Text
position: Boolean optional, default [0,0,1,1] (true = "mission" area in layout options, false = full screen) or Array (format [X, Y, Width, Height])
tileSize: Number or Array optional, default 10 ([10,10]) (format [Width, Height])
duration: Number optional, default 5 (in seconds)
fadeInOutTime: Number or Array [fadeIn, fadeOut] optional, default 0 (in seconds)
tileTransparency: Number optional, default 0.3, Where 0 is invisible and 1 is visible, more like an alpha value
Return Value:
Boolean

Examples

Example 1:
[parseText "<t font='PuristaBold' size='1.6'>MyMission</t><br />by Username", true, nil, 7, 0.7, 0] spawn BIS_fnc_textTiles
Example 2:
["path\to\image.paa"] spawn BIS_fnc_textTiles

Additional Information

See also:
BIS_fnc_dynamicTextBIS_fnc_infoTextBIS_fnc_typeTextBIS_fnc_typeText2BIS_fnc_EXP_camp_SITREP

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