diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-05 14:38:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 14:38:17 +0100 |
commit | 63d9308b4b27ff6d50e2f663ec72b35edefc2ff2 (patch) | |
tree | 786c03e724be8582aeb9f95f128e0c1195753723 /doc/classes | |
parent | ffddb19a695685a7fc4b006497af0a3c8db71761 (diff) | |
parent | 5e0e4f209a41643cdaa1a864fed542882c611c0e (diff) |
Merge pull request #56047 from piiertho/feature/osx-sign-directory
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/EditorExportPlugin.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/classes/EditorExportPlugin.xml b/doc/classes/EditorExportPlugin.xml index 3830bfc60e..9c01921df1 100644 --- a/doc/classes/EditorExportPlugin.xml +++ b/doc/classes/EditorExportPlugin.xml @@ -96,12 +96,22 @@ Adds a static lib from the given [code]path[/code] to the iOS project. </description> </method> + <method name="add_osx_plugin_file"> + <return type="void" /> + <argument index="0" name="path" type="String" /> + <description> + Adds file or directory matching [code]path[/code] to [code]PlugIns[/code] directory of macOS app bundle. + [b]Note:[/b] This is useful only for macOS exports. + </description> + </method> <method name="add_shared_object"> <return type="void" /> <argument index="0" name="path" type="String" /> <argument index="1" name="tags" type="PackedStringArray" /> <description> - Adds a shared object with the given [code]tags[/code] and destination [code]path[/code]. + Adds a shared object or a directory containing only shared objects with the given [code]tags[/code] and destination [code]path[/code]. + [b]Note:[/b] In case of macOS exports, those shared objects will be added to [code]Frameworks[/code] directory of app bundle. + In case of a directory code-sign will error if you place non code object in directory. </description> </method> <method name="skip"> |