diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-08 09:37:40 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-08 09:37:40 +0100 |
commit | 0e97806c1d5cc181aac75eb14bb62af3a0602dad (patch) | |
tree | 150863e47bb875658cc02b0e0945ba23a6119ae8 /doc | |
parent | 5c0f07b76a2a2ee68526f68e7e831d547c52d48a (diff) | |
parent | 2e167ca943309cbae165b4ece4bec62f8fdfbc24 (diff) |
Merge pull request #72860 from RedworkDE/editor-export-plugin-bind
Bind `EditorExportPlugin::_get_export_features`
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/EditorExportPlugin.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/EditorExportPlugin.xml b/doc/classes/EditorExportPlugin.xml index 3e8ce10aa5..fd76e8ddaa 100644 --- a/doc/classes/EditorExportPlugin.xml +++ b/doc/classes/EditorExportPlugin.xml @@ -87,6 +87,14 @@ Return a hash based on the configuration passed (for both scenes and resources). This helps keep separate caches for separate export configurations. </description> </method> + <method name="_get_export_features" qualifiers="virtual const"> + <return type="PackedStringArray" /> + <param index="0" name="platform" type="EditorExportPlatform" /> + <param index="1" name="debug" type="bool" /> + <description> + Return a [PackedStringArray] of additional features this preset, for the given [param platform], should have. + </description> + </method> <method name="_get_name" qualifiers="virtual const"> <return type="String" /> <description> |