getMissionPath: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
(see also)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns mission root plus the filename in a form of filepath to be used in with commands requiring absolute path such as [[playSound3D]], [[drawIcon3D]], etc. Any leading "\" in the filename will be stripped as the mission root includes one already. |DESCRIPTION=
| Returns mission root plus the filename in a form of filepath to be used in 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. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 18: Line 18:




| [[missionConfigFile]], [[playSound3D]], [[drawIcon3D]], [[description.ext]] |SEEALSO=
| [[missionConfigFile]], [[playSound3D]], [[drawIcon3D]], [[createSimpleObject]], [[description.ext]] |SEEALSO=


}}
}}

Revision as of 20:43, 3 August 2019

-wrong parameter ("arma3dev") defined!-[[:Category:Introduced with arma3dev version 1.95|1.95]]
Hover & click on the images for description

Description

Description:
Returns mission root plus the filename in a form of filepath to be used in 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

[[Category:Introduced with arma3dev version 1.95]][[ Category: arma3dev: New Scripting Commands | GETMISSIONPATH]][[ Category: arma3dev: Scripting Commands | GETMISSIONPATH]]

Notes

Bottom Section