diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-10-01 17:30:49 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-10-01 17:30:49 +0200 |
commit | 70ac89e7763d79ee7fb93e0579d9836149baa5d0 (patch) | |
tree | a626e8c990d256c11d5b5637c71f07e6844fba4a /doc | |
parent | 60708ccbfee37f6b681d2c7d0e36d411e91f3b6b (diff) | |
parent | 7a909896f73cf7ed81ba39028b75315ecf851628 (diff) | |
download | redot-engine-70ac89e7763d79ee7fb93e0579d9836149baa5d0.tar.gz |
Merge pull request #96980 from m4gr3d/enable_legacy_build_customization_by_plugin
Expose `get_export_option_visibility` to editor plugins
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/EditorExportPlugin.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/classes/EditorExportPlugin.xml b/doc/classes/EditorExportPlugin.xml index 42e1968eb0..aa8e4b3d56 100644 --- a/doc/classes/EditorExportPlugin.xml +++ b/doc/classes/EditorExportPlugin.xml @@ -159,6 +159,15 @@ Return a [PackedStringArray] of additional features this preset, for the given [param platform], should have. </description> </method> + <method name="_get_export_option_visibility" qualifiers="virtual const"> + <return type="bool" /> + <param index="0" name="platform" type="EditorExportPlatform" /> + <param index="1" name="option" type="String" /> + <description> + [b]Optional.[/b] + Validates [param option] and returns the visibility for the specified [param platform]. The default implementation returns [code]true[/code] for all options. + </description> + </method> <method name="_get_export_option_warning" qualifiers="virtual const"> <return type="String" /> <param index="0" name="platform" type="EditorExportPlatform" /> |