class_editorimportplugin.rst 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorImportPlugin.xml.
  6. .. _class_EditorImportPlugin:
  7. EditorImportPlugin
  8. ==================
  9. **Inherits:** :ref:`ResourceImporter<class_ResourceImporter>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. Registers a custom resource importer in the editor. Use the class to parse any file and import it as a new resource type.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. **EditorImportPlugin**\ s provide a way to extend the editor's resource import functionality. Use them to import resources from custom files or to provide alternatives to the editor's existing importers.
  15. EditorImportPlugins work by associating with specific file extensions and a resource type. See :ref:`_get_recognized_extensions()<class_EditorImportPlugin_private_method__get_recognized_extensions>` and :ref:`_get_resource_type()<class_EditorImportPlugin_private_method__get_resource_type>`. They may optionally specify some import presets that affect the import process. EditorImportPlugins are responsible for creating the resources and saving them in the ``.godot/imported`` directory (see :ref:`ProjectSettings.application/config/use_hidden_project_data_directory<class_ProjectSettings_property_application/config/use_hidden_project_data_directory>`).
  16. Below is an example EditorImportPlugin that imports a :ref:`Mesh<class_Mesh>` from a file with the extension ".special" or ".spec":
  17. .. tabs::
  18. .. code-tab:: gdscript
  19. @tool
  20. extends EditorImportPlugin
  21. func _get_importer_name():
  22. return "my.special.plugin"
  23. func _get_visible_name():
  24. return "Special Mesh"
  25. func _get_recognized_extensions():
  26. return ["special", "spec"]
  27. func _get_save_extension():
  28. return "mesh"
  29. func _get_resource_type():
  30. return "Mesh"
  31. func _get_preset_count():
  32. return 1
  33. func _get_preset_name(preset_index):
  34. return "Default"
  35. func _get_import_options(path, preset_index):
  36. return [{"name": "my_option", "default_value": false}]
  37. func _import(source_file, save_path, options, platform_variants, gen_files):
  38. var file = FileAccess.open(source_file, FileAccess.READ)
  39. if file == null:
  40. return FAILED
  41. var mesh = ArrayMesh.new()
  42. # Fill the Mesh with data read in "file", left as an exercise to the reader.
  43. var filename = save_path + "." + _get_save_extension()
  44. return ResourceSaver.save(mesh, filename)
  45. .. code-tab:: csharp
  46. using Godot;
  47. public partial class MySpecialPlugin : EditorImportPlugin
  48. {
  49. public override string _GetImporterName()
  50. {
  51. return "my.special.plugin";
  52. }
  53. public override string _GetVisibleName()
  54. {
  55. return "Special Mesh";
  56. }
  57. public override string[] _GetRecognizedExtensions()
  58. {
  59. return ["special", "spec"];
  60. }
  61. public override string _GetSaveExtension()
  62. {
  63. return "mesh";
  64. }
  65. public override string _GetResourceType()
  66. {
  67. return "Mesh";
  68. }
  69. public override int _GetPresetCount()
  70. {
  71. return 1;
  72. }
  73. public override string _GetPresetName(int presetIndex)
  74. {
  75. return "Default";
  76. }
  77. public override Godot.Collections.Array<Godot.Collections.Dictionary> _GetImportOptions(string path, int presetIndex)
  78. {
  79. return
  80. [
  81. new Godot.Collections.Dictionary
  82. {
  83. { "name", "myOption" },
  84. { "default_value", false },
  85. },
  86. ];
  87. }
  88. public override Error _Import(string sourceFile, string savePath, Godot.Collections.Dictionary options, Godot.Collections.Array<string> platformVariants, Godot.Collections.Array<string> genFiles)
  89. {
  90. using var file = FileAccess.Open(sourceFile, FileAccess.ModeFlags.Read);
  91. if (file.GetError() != Error.Ok)
  92. {
  93. return Error.Failed;
  94. }
  95. var mesh = new ArrayMesh();
  96. // Fill the Mesh with data read in "file", left as an exercise to the reader.
  97. string filename = $"{savePath}.{_GetSaveExtension()}";
  98. return ResourceSaver.Save(mesh, filename);
  99. }
  100. }
  101. To use **EditorImportPlugin**, register it using the :ref:`EditorPlugin.add_import_plugin()<class_EditorPlugin_method_add_import_plugin>` method first.
  102. .. rst-class:: classref-introduction-group
  103. Tutorials
  104. ---------
  105. - :doc:`Import plugins <../tutorials/plugins/editor/import_plugins>`
  106. .. rst-class:: classref-reftable-group
  107. Methods
  108. -------
  109. .. table::
  110. :widths: auto
  111. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  112. | :ref:`bool<class_bool>` | :ref:`_can_import_threaded<class_EditorImportPlugin_private_method__can_import_threaded>`\ (\ ) |virtual| |const| |
  113. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  114. | :ref:`int<class_int>` | :ref:`_get_format_version<class_EditorImportPlugin_private_method__get_format_version>`\ (\ ) |virtual| |const| |
  115. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  116. | :ref:`Array<class_Array>`\[:ref:`Dictionary<class_Dictionary>`\] | :ref:`_get_import_options<class_EditorImportPlugin_private_method__get_import_options>`\ (\ path\: :ref:`String<class_String>`, preset_index\: :ref:`int<class_int>`\ ) |virtual| |const| |
  117. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  118. | :ref:`int<class_int>` | :ref:`_get_import_order<class_EditorImportPlugin_private_method__get_import_order>`\ (\ ) |virtual| |const| |
  119. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  120. | :ref:`String<class_String>` | :ref:`_get_importer_name<class_EditorImportPlugin_private_method__get_importer_name>`\ (\ ) |virtual| |const| |
  121. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  122. | :ref:`bool<class_bool>` | :ref:`_get_option_visibility<class_EditorImportPlugin_private_method__get_option_visibility>`\ (\ path\: :ref:`String<class_String>`, option_name\: :ref:`StringName<class_StringName>`, options\: :ref:`Dictionary<class_Dictionary>`\ ) |virtual| |const| |
  123. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  124. | :ref:`int<class_int>` | :ref:`_get_preset_count<class_EditorImportPlugin_private_method__get_preset_count>`\ (\ ) |virtual| |const| |
  125. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  126. | :ref:`String<class_String>` | :ref:`_get_preset_name<class_EditorImportPlugin_private_method__get_preset_name>`\ (\ preset_index\: :ref:`int<class_int>`\ ) |virtual| |const| |
  127. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  128. | :ref:`float<class_float>` | :ref:`_get_priority<class_EditorImportPlugin_private_method__get_priority>`\ (\ ) |virtual| |const| |
  129. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  130. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`_get_recognized_extensions<class_EditorImportPlugin_private_method__get_recognized_extensions>`\ (\ ) |virtual| |const| |
  131. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  132. | :ref:`String<class_String>` | :ref:`_get_resource_type<class_EditorImportPlugin_private_method__get_resource_type>`\ (\ ) |virtual| |const| |
  133. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  134. | :ref:`String<class_String>` | :ref:`_get_save_extension<class_EditorImportPlugin_private_method__get_save_extension>`\ (\ ) |virtual| |const| |
  135. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  136. | :ref:`String<class_String>` | :ref:`_get_visible_name<class_EditorImportPlugin_private_method__get_visible_name>`\ (\ ) |virtual| |const| |
  137. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  138. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`_import<class_EditorImportPlugin_private_method__import>`\ (\ source_file\: :ref:`String<class_String>`, save_path\: :ref:`String<class_String>`, options\: :ref:`Dictionary<class_Dictionary>`, platform_variants\: :ref:`Array<class_Array>`\[:ref:`String<class_String>`\], gen_files\: :ref:`Array<class_Array>`\[:ref:`String<class_String>`\]\ ) |virtual| |const| |
  139. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  140. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`append_import_external_resource<class_EditorImportPlugin_method_append_import_external_resource>`\ (\ path\: :ref:`String<class_String>`, custom_options\: :ref:`Dictionary<class_Dictionary>` = {}, custom_importer\: :ref:`String<class_String>` = "", generator_parameters\: :ref:`Variant<class_Variant>` = null\ ) |
  141. +------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  142. .. rst-class:: classref-section-separator
  143. ----
  144. .. rst-class:: classref-descriptions-group
  145. Method Descriptions
  146. -------------------
  147. .. _class_EditorImportPlugin_private_method__can_import_threaded:
  148. .. rst-class:: classref-method
  149. :ref:`bool<class_bool>` **_can_import_threaded**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__can_import_threaded>`
  150. Tells whether this importer can be run in parallel on threads, or, on the contrary, it's only safe for the editor to call it from the main thread, for one file at a time.
  151. If this method is not overridden, it will return ``false`` by default.
  152. If this importer's implementation is thread-safe and can be run in parallel, override this with ``true`` to optimize for concurrency.
  153. .. rst-class:: classref-item-separator
  154. ----
  155. .. _class_EditorImportPlugin_private_method__get_format_version:
  156. .. rst-class:: classref-method
  157. :ref:`int<class_int>` **_get_format_version**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_format_version>`
  158. Gets the format version of this importer. Increment this version when making incompatible changes to the format of the imported resources.
  159. .. rst-class:: classref-item-separator
  160. ----
  161. .. _class_EditorImportPlugin_private_method__get_import_options:
  162. .. rst-class:: classref-method
  163. :ref:`Array<class_Array>`\[:ref:`Dictionary<class_Dictionary>`\] **_get_import_options**\ (\ path\: :ref:`String<class_String>`, preset_index\: :ref:`int<class_int>`\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_import_options>`
  164. Gets the options and default values for the preset at this index. Returns an Array of Dictionaries with the following keys: ``name``, ``default_value``, ``property_hint`` (optional), ``hint_string`` (optional), ``usage`` (optional).
  165. .. rst-class:: classref-item-separator
  166. ----
  167. .. _class_EditorImportPlugin_private_method__get_import_order:
  168. .. rst-class:: classref-method
  169. :ref:`int<class_int>` **_get_import_order**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_import_order>`
  170. Gets the order of this importer to be run when importing resources. Importers with *lower* import orders will be called first, and higher values will be called later. Use this to ensure the importer runs after the dependencies are already imported. The default import order is ``0`` unless overridden by a specific importer. See :ref:`ImportOrder<enum_ResourceImporter_ImportOrder>` for some predefined values.
  171. .. rst-class:: classref-item-separator
  172. ----
  173. .. _class_EditorImportPlugin_private_method__get_importer_name:
  174. .. rst-class:: classref-method
  175. :ref:`String<class_String>` **_get_importer_name**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_importer_name>`
  176. Gets the unique name of the importer.
  177. .. rst-class:: classref-item-separator
  178. ----
  179. .. _class_EditorImportPlugin_private_method__get_option_visibility:
  180. .. rst-class:: classref-method
  181. :ref:`bool<class_bool>` **_get_option_visibility**\ (\ path\: :ref:`String<class_String>`, option_name\: :ref:`StringName<class_StringName>`, options\: :ref:`Dictionary<class_Dictionary>`\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_option_visibility>`
  182. Gets whether the import option specified by ``option_name`` should be visible in the Import dock. The default implementation always returns ``true``, making all options visible. This is mainly useful for hiding options that depend on others if one of them is disabled.
  183. .. tabs::
  184. .. code-tab:: gdscript
  185. func _get_option_visibility(path, option_name, options):
  186. # Only show the lossy quality setting if the compression mode is set to "Lossy".
  187. if option_name == "compress/lossy_quality" and options.has("compress/mode"):
  188. return int(options["compress/mode"]) == COMPRESS_LOSSY # This is a constant that you set
  189. return true
  190. .. code-tab:: csharp
  191. public override bool _GetOptionVisibility(string path, StringName optionName, Godot.Collections.Dictionary options)
  192. {
  193. // Only show the lossy quality setting if the compression mode is set to "Lossy".
  194. if (optionName == "compress/lossy_quality" && options.ContainsKey("compress/mode"))
  195. {
  196. return (int)options["compress/mode"] == CompressLossy; // This is a constant you set
  197. }
  198. return true;
  199. }
  200. .. rst-class:: classref-item-separator
  201. ----
  202. .. _class_EditorImportPlugin_private_method__get_preset_count:
  203. .. rst-class:: classref-method
  204. :ref:`int<class_int>` **_get_preset_count**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_preset_count>`
  205. Gets the number of initial presets defined by the plugin. Use :ref:`_get_import_options()<class_EditorImportPlugin_private_method__get_import_options>` to get the default options for the preset and :ref:`_get_preset_name()<class_EditorImportPlugin_private_method__get_preset_name>` to get the name of the preset.
  206. .. rst-class:: classref-item-separator
  207. ----
  208. .. _class_EditorImportPlugin_private_method__get_preset_name:
  209. .. rst-class:: classref-method
  210. :ref:`String<class_String>` **_get_preset_name**\ (\ preset_index\: :ref:`int<class_int>`\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_preset_name>`
  211. Gets the name of the options preset at this index.
  212. .. rst-class:: classref-item-separator
  213. ----
  214. .. _class_EditorImportPlugin_private_method__get_priority:
  215. .. rst-class:: classref-method
  216. :ref:`float<class_float>` **_get_priority**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_priority>`
  217. Gets the priority of this plugin for the recognized extension. Higher priority plugins will be preferred. The default priority is ``1.0``.
  218. .. rst-class:: classref-item-separator
  219. ----
  220. .. _class_EditorImportPlugin_private_method__get_recognized_extensions:
  221. .. rst-class:: classref-method
  222. :ref:`PackedStringArray<class_PackedStringArray>` **_get_recognized_extensions**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_recognized_extensions>`
  223. Gets the list of file extensions to associate with this loader (case-insensitive). e.g. ``["obj"]``.
  224. .. rst-class:: classref-item-separator
  225. ----
  226. .. _class_EditorImportPlugin_private_method__get_resource_type:
  227. .. rst-class:: classref-method
  228. :ref:`String<class_String>` **_get_resource_type**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_resource_type>`
  229. Gets the Godot resource type associated with this loader. e.g. ``"Mesh"`` or ``"Animation"``.
  230. .. rst-class:: classref-item-separator
  231. ----
  232. .. _class_EditorImportPlugin_private_method__get_save_extension:
  233. .. rst-class:: classref-method
  234. :ref:`String<class_String>` **_get_save_extension**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_save_extension>`
  235. Gets the extension used to save this resource in the ``.godot/imported`` directory (see :ref:`ProjectSettings.application/config/use_hidden_project_data_directory<class_ProjectSettings_property_application/config/use_hidden_project_data_directory>`).
  236. .. rst-class:: classref-item-separator
  237. ----
  238. .. _class_EditorImportPlugin_private_method__get_visible_name:
  239. .. rst-class:: classref-method
  240. :ref:`String<class_String>` **_get_visible_name**\ (\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__get_visible_name>`
  241. Gets the name to display in the import window. You should choose this name as a continuation to "Import as", e.g. "Import as Special Mesh".
  242. .. rst-class:: classref-item-separator
  243. ----
  244. .. _class_EditorImportPlugin_private_method__import:
  245. .. rst-class:: classref-method
  246. :ref:`Error<enum_@GlobalScope_Error>` **_import**\ (\ source_file\: :ref:`String<class_String>`, save_path\: :ref:`String<class_String>`, options\: :ref:`Dictionary<class_Dictionary>`, platform_variants\: :ref:`Array<class_Array>`\[:ref:`String<class_String>`\], gen_files\: :ref:`Array<class_Array>`\[:ref:`String<class_String>`\]\ ) |virtual| |const| :ref:`🔗<class_EditorImportPlugin_private_method__import>`
  247. Imports ``source_file`` with the import ``options`` specified. Should return :ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` if the import is successful, other values indicate failure.
  248. The imported resource is expected to be saved to ``save_path + "." + _get_save_extension()``. If a different variant is preferred for a :doc:`feature tag <../tutorials/export/feature_tags>`, save the variant to ``save_path + "." + tag + "." + _get_save_extension()`` and add the feature tag to ``platform_variants``.
  249. If additional resource files are generated in the resource filesystem (``res://``), add their full path to ``gen_files`` so that the editor knows they depend on ``source_file``.
  250. This method must be overridden to do the actual importing work. See this class' description for an example of overriding this method.
  251. .. rst-class:: classref-item-separator
  252. ----
  253. .. _class_EditorImportPlugin_method_append_import_external_resource:
  254. .. rst-class:: classref-method
  255. :ref:`Error<enum_@GlobalScope_Error>` **append_import_external_resource**\ (\ path\: :ref:`String<class_String>`, custom_options\: :ref:`Dictionary<class_Dictionary>` = {}, custom_importer\: :ref:`String<class_String>` = "", generator_parameters\: :ref:`Variant<class_Variant>` = null\ ) :ref:`🔗<class_EditorImportPlugin_method_append_import_external_resource>`
  256. This function can only be called during the :ref:`_import()<class_EditorImportPlugin_private_method__import>` callback and it allows manually importing resources from it. This is useful when the imported file generates external resources that require importing (as example, images). Custom parameters for the ".import" file can be passed via the ``custom_options``. Additionally, in cases where multiple importers can handle a file, the ``custom_importer`` can be specified to force a specific one. This function performs a resource import and returns immediately with a success or error code. ``generator_parameters`` defines optional extra metadata which will be stored as ``generator_parameters`` in the ``remap`` section of the ``.import`` file, for example to store a md5 hash of the source data.
  257. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  258. .. |required| replace:: :abbr:`required (This method is required to be overridden when extending its base class.)`
  259. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  260. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  261. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  262. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  263. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  264. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  265. .. |void| replace:: :abbr:`void (No return value.)`