getMissionPath: Difference between revisions
Jump to navigation
Jump to search
m (updated version to 1.96) |
m (Fix the slashes used on the comment in Example 2.) |
||
Line 15: | Line 15: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1 = <code>_path = [[getMissionPath]] "icons\myIcon.paa";</code> |EXAMPLE1= | |x1 = <code>_path = [[getMissionPath]] "icons\myIcon.paa";</code> |EXAMPLE1= | ||
|x2 = <code>_path = [[getMissionPath]] "\icons\myIcon.paa"; {{codecomment| | |x2 = <code>_path = [[getMissionPath]] "\icons\myIcon.paa"; {{codecomment|// also fine}}</code> |EXAMPLE2= | ||
Revision as of 18:06, 29 October 2019
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
Examples
- Example 1:
_path = getMissionPath "icons\myIcon.paa";
- Example 2:
_path = getMissionPath "\icons\myIcon.paa"; // also fine
Additional Information
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.96]][[ Category: arma3dev: New Scripting Commands | GETMISSIONPATH]][[ Category: arma3dev: Scripting Commands | GETMISSIONPATH]]