BIS fnc 3Dcredits: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Changed: "Syntax" - changed call to spawn. Must be run in a scheduled environment, spawn ensures this. Changed: "Parameters # text" - This command doesn't accept Structured Text, it will return an error, use string with optional Structured Text formatting)
Line 16: Line 16:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [text,position,''minDis'',''fadeDis''] call '''BIS_fnc_3Dcredits'''  |=
| [text,position,''minDis'',''fadeDis''] spawn '''BIS_fnc_3Dcredits'''  |=


|p1= text: [[Structured Text]] |= PARAMETER1  
|p1= text: [[String]] with optional [[Structured_Text|Structured Text]] formatting |= PARAMETER1  


|p2= position: [[Array]] in format [[Position]] |= PARAMETER2  
|p2= position: [[Array]] in format [[Position]] |= PARAMETER2  

Revision as of 05:14, 24 December 2014

Hover & click on the images for description

Description

Description:
Displays structured text in 3D world.
GUI layer for indicator is 2733.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[text,position,minDis,fadeDis] spawn BIS_fnc_3Dcredits
Parameters:
text: String with optional Structured Text formatting
position: Array in format Position
minDis (Optional): Number - distance in which text is displayed (default is 20)
fadeDis (Optional): Number - distance in which text starts fading again (default is 1.5)
Return Value:
Nothing

Examples

Example 1:
["<t size='2'>Hello World</t>", getPos helloWorld, 15, 0] spawn BIS_fnc_3Dcredits;
Example 2:
["<img size='2' image='img\myImage.paa'/><br />Some text on the second line", getPos someObject] spawn BIS_fnc_3Dcredits;

Additional Information

See also:
Functions Library

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