BIS fnc exportGUIBaseClasses: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "\[\[[cC]ategory:\{\{Name\|arma3\}\}: [fF]unctions\|\{\{uc:[a-z A-Z_]*\}\}\]\]" to "") |
(obsolete template) |
||
Line 12: | Line 12: | ||
| Export GUI macros and base classes to the clipboard.{{Warning|The exported the Eden Editor base classes have several inheritance issues. If you need the base classes you can get them [https://github.com/LarrowZurb/A3_GUI_Defines '''here'''].}} | | Export GUI macros and base classes to the clipboard.{{Warning|The exported the Eden Editor base classes have several inheritance issues. If you need the base classes you can get them [https://github.com/LarrowZurb/A3_GUI_Defines '''here'''].}} | ||
{{Feature|obsolete|[[import]] keyword was introduced|arma3|2.01.146644}} | |||
| mode call [[BIS_fnc_exportGUIBaseClasses]] | | mode call [[BIS_fnc_exportGUIBaseClasses]] | ||
Line 38: | Line 39: | ||
<dd class="note"> You can use [[Arma 3 Utilities]] to get the base class for your mission config. For example if you need <tt>RscPicture</tt> base, enter '''utils 2''' in the debug console and click '''LOCAL EXEC''', type <tt>RscPicture</tt> and press Enter, check '''Include Inherited''' box, then click '''COPY'''. The config is now copied to Clipboard and you can paste it in your [[description.ext]] and then derive your class from it. | <dd class="note"> You can use [[Arma 3 Utilities]] to get the base class for your mission config. For example if you need <tt>RscPicture</tt> base, enter '''utils 2''' in the debug console and click '''LOCAL EXEC''', type <tt>RscPicture</tt> and press Enter, check '''Include Inherited''' box, then click '''COPY'''. The config is now copied to Clipboard and you can paste it in your [[description.ext]] and then derive your class from it. | ||
</dd> | </dd> | ||
Revision as of 18:06, 5 February 2021
Description
- Description:
- Description needed
- Execution:
- call
- Groups:
- GUIDiagnosticBroken Functions
Syntax
- Syntax:
- Syntax needed
- Parameters:
- mode: String - Mode, can be:
"Default" - Classic base classes like RscText or RscPicture
"3DEN" - Eden Editor base classes like ctrlStatic or ctrlStaticPicture
"all" - All GUI base classes, including more exotic ones - Return Value:
- Return value needed
Examples
- Example 1:
"all" call BIS_fnc_exportGUIBaseClasses;
Additional Information
- See also:
- See also needed
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
- Posted on September 28, 2018 - 14:37 (UTC)
- killzone_kid
- You can use Arma 3 Utilities to get the base class for your mission config. For example if you need RscPicture base, enter utils 2 in the debug console and click LOCAL EXEC, type RscPicture and press Enter, check Include Inherited box, then click COPY. The config is now copied to Clipboard and you can paste it in your description.ext and then derive your class from it.