getMissionPath: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix the slashes used on the comment in Example 2.)
No edit summary
Line 2: Line 2:
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma3dev |Game name=
| arma3 |Game name=
|1.96|Game version=
|1.96|Game version=



Revision as of 22:19, 29 October 2019

Hover & click on the images for description

Description

Description:
Returns mission root plus the filename in a form of filepath to be used with commands requiring absolute path such as playSound3D, drawIcon3D, createSimpleObject, etc. Any leading "\" in the filename will be stripped as the mission root includes one already.
Groups:
Uncategorised

Syntax

Syntax:
getMissionPath filename
Parameters:
filename: String
Return Value:
String - absolute path

Examples

Example 1:
_path = getMissionPath "icons\myIcon.paa";
Example 2:
_path = getMissionPath "\icons\myIcon.paa"; // also fine

Additional Information

See also:
missionConfigFileplaySound3DdrawIcon3DcreateSimpleObjectdescription.ext

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