class_editorimportplugin.rst 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  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_method__get_recognized_extensions>` and :ref:`_get_resource_type<class_EditorImportPlugin_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(i):
  34. return "Default"
  35. func _get_import_options(i):
  36. return [{"name": "my_option", "default_value": false}]
  37. func _import(source_file, save_path, options, platform_variants, gen_files):
  38. var file = File.new()
  39. if file.open(source_file, File.READ) != OK:
  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. using System;
  48. public class MySpecialPlugin : EditorImportPlugin
  49. {
  50. public override String GetImporterName()
  51. {
  52. return "my.special.plugin";
  53. }
  54. public override String GetVisibleName()
  55. {
  56. return "Special Mesh";
  57. }
  58. public override Godot.Collections.Array GetRecognizedExtensions()
  59. {
  60. return new Godot.Collections.Array{"special", "spec"};
  61. }
  62. public override String GetSaveExtension()
  63. {
  64. return "mesh";
  65. }
  66. public override String GetResourceType()
  67. {
  68. return "Mesh";
  69. }
  70. public override int GetPresetCount()
  71. {
  72. return 1;
  73. }
  74. public override String GetPresetName(int i)
  75. {
  76. return "Default";
  77. }
  78. public override Godot.Collections.Array GetImportOptions(int i)
  79. {
  80. return new Godot.Collections.Array{new Godot.Collections.Dictionary{{"name", "myOption"}, {"defaultValue", false}}};
  81. }
  82. public override int Import(String sourceFile, String savePath, Godot.Collections.Dictionary options, Godot.Collections.Array platformVariants, Godot.Collections.Array genFiles)
  83. {
  84. var file = new File();
  85. if (file.Open(sourceFile, File.ModeFlags.Read) != Error.Ok)
  86. {
  87. return (int)Error.Failed;
  88. }
  89. var mesh = new ArrayMesh();
  90. // Fill the Mesh with data read in "file", left as an exercise to the reader.
  91. String filename = savePath + "." + GetSaveExtension();
  92. return (int)ResourceSaver.Save(mesh, filename);
  93. }
  94. }
  95. To use **EditorImportPlugin**, register it using the :ref:`EditorPlugin.add_import_plugin<class_EditorPlugin_method_add_import_plugin>` method first.
  96. .. rst-class:: classref-introduction-group
  97. Tutorials
  98. ---------
  99. - :doc:`Import plugins <../tutorials/plugins/editor/import_plugins>`
  100. .. rst-class:: classref-reftable-group
  101. Methods
  102. -------
  103. .. table::
  104. :widths: auto
  105. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  106. | :ref:`Dictionary[]<class_Dictionary>` | :ref:`_get_import_options<class_EditorImportPlugin_method__get_import_options>` **(** :ref:`String<class_String>` path, :ref:`int<class_int>` preset_index **)** |virtual| |const| |
  107. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  108. | :ref:`int<class_int>` | :ref:`_get_import_order<class_EditorImportPlugin_method__get_import_order>` **(** **)** |virtual| |const| |
  109. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  110. | :ref:`String<class_String>` | :ref:`_get_importer_name<class_EditorImportPlugin_method__get_importer_name>` **(** **)** |virtual| |const| |
  111. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  112. | :ref:`bool<class_bool>` | :ref:`_get_option_visibility<class_EditorImportPlugin_method__get_option_visibility>` **(** :ref:`String<class_String>` path, :ref:`StringName<class_StringName>` option_name, :ref:`Dictionary<class_Dictionary>` options **)** |virtual| |const| |
  113. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  114. | :ref:`int<class_int>` | :ref:`_get_preset_count<class_EditorImportPlugin_method__get_preset_count>` **(** **)** |virtual| |const| |
  115. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  116. | :ref:`String<class_String>` | :ref:`_get_preset_name<class_EditorImportPlugin_method__get_preset_name>` **(** :ref:`int<class_int>` preset_index **)** |virtual| |const| |
  117. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  118. | :ref:`float<class_float>` | :ref:`_get_priority<class_EditorImportPlugin_method__get_priority>` **(** **)** |virtual| |const| |
  119. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  120. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`_get_recognized_extensions<class_EditorImportPlugin_method__get_recognized_extensions>` **(** **)** |virtual| |const| |
  121. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  122. | :ref:`String<class_String>` | :ref:`_get_resource_type<class_EditorImportPlugin_method__get_resource_type>` **(** **)** |virtual| |const| |
  123. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  124. | :ref:`String<class_String>` | :ref:`_get_save_extension<class_EditorImportPlugin_method__get_save_extension>` **(** **)** |virtual| |const| |
  125. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  126. | :ref:`String<class_String>` | :ref:`_get_visible_name<class_EditorImportPlugin_method__get_visible_name>` **(** **)** |virtual| |const| |
  127. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  128. | :ref:`int<class_int>` | :ref:`_import<class_EditorImportPlugin_method__import>` **(** :ref:`String<class_String>` source_file, :ref:`String<class_String>` save_path, :ref:`Dictionary<class_Dictionary>` options, :ref:`String[]<class_String>` platform_variants, :ref:`String[]<class_String>` gen_files **)** |virtual| |const| |
  129. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  130. .. rst-class:: classref-section-separator
  131. ----
  132. .. rst-class:: classref-descriptions-group
  133. Method Descriptions
  134. -------------------
  135. .. _class_EditorImportPlugin_method__get_import_options:
  136. .. rst-class:: classref-method
  137. :ref:`Dictionary[]<class_Dictionary>` **_get_import_options** **(** :ref:`String<class_String>` path, :ref:`int<class_int>` preset_index **)** |virtual| |const|
  138. 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).
  139. .. rst-class:: classref-item-separator
  140. ----
  141. .. _class_EditorImportPlugin_method__get_import_order:
  142. .. rst-class:: classref-method
  143. :ref:`int<class_int>` **_get_import_order** **(** **)** |virtual| |const|
  144. 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.
  145. .. rst-class:: classref-item-separator
  146. ----
  147. .. _class_EditorImportPlugin_method__get_importer_name:
  148. .. rst-class:: classref-method
  149. :ref:`String<class_String>` **_get_importer_name** **(** **)** |virtual| |const|
  150. Gets the unique name of the importer.
  151. .. rst-class:: classref-item-separator
  152. ----
  153. .. _class_EditorImportPlugin_method__get_option_visibility:
  154. .. rst-class:: classref-method
  155. :ref:`bool<class_bool>` **_get_option_visibility** **(** :ref:`String<class_String>` path, :ref:`StringName<class_StringName>` option_name, :ref:`Dictionary<class_Dictionary>` options **)** |virtual| |const|
  156. This method can be overridden to hide specific import options if conditions are met. This is mainly useful for hiding options that depend on others if one of them is disabled. For example:
  157. .. tabs::
  158. .. code-tab:: gdscript
  159. func _get_option_visibility(option, options):
  160. # Only show the lossy quality setting if the compression mode is set to "Lossy".
  161. if option == "compress/lossy_quality" and options.has("compress/mode"):
  162. return int(options["compress/mode"]) == COMPRESS_LOSSY # This is a constant that you set
  163. return true
  164. .. code-tab:: csharp
  165. public void GetOptionVisibility(string option, Godot.Collections.Dictionary options)
  166. {
  167. // Only show the lossy quality setting if the compression mode is set to "Lossy".
  168. if (option == "compress/lossyQuality" && options.Contains("compress/mode"))
  169. {
  170. return (int)options["compress/mode"] == COMPRESS_LOSSY; // This is a constant you set
  171. }
  172. return true;
  173. }
  174. Returns ``true`` to make all options always visible.
  175. .. rst-class:: classref-item-separator
  176. ----
  177. .. _class_EditorImportPlugin_method__get_preset_count:
  178. .. rst-class:: classref-method
  179. :ref:`int<class_int>` **_get_preset_count** **(** **)** |virtual| |const|
  180. Gets the number of initial presets defined by the plugin. Use :ref:`_get_import_options<class_EditorImportPlugin_method__get_import_options>` to get the default options for the preset and :ref:`_get_preset_name<class_EditorImportPlugin_method__get_preset_name>` to get the name of the preset.
  181. .. rst-class:: classref-item-separator
  182. ----
  183. .. _class_EditorImportPlugin_method__get_preset_name:
  184. .. rst-class:: classref-method
  185. :ref:`String<class_String>` **_get_preset_name** **(** :ref:`int<class_int>` preset_index **)** |virtual| |const|
  186. Gets the name of the options preset at this index.
  187. .. rst-class:: classref-item-separator
  188. ----
  189. .. _class_EditorImportPlugin_method__get_priority:
  190. .. rst-class:: classref-method
  191. :ref:`float<class_float>` **_get_priority** **(** **)** |virtual| |const|
  192. Gets the priority of this plugin for the recognized extension. Higher priority plugins will be preferred. The default priority is ``1.0``.
  193. .. rst-class:: classref-item-separator
  194. ----
  195. .. _class_EditorImportPlugin_method__get_recognized_extensions:
  196. .. rst-class:: classref-method
  197. :ref:`PackedStringArray<class_PackedStringArray>` **_get_recognized_extensions** **(** **)** |virtual| |const|
  198. Gets the list of file extensions to associate with this loader (case-insensitive). e.g. ``["obj"]``.
  199. .. rst-class:: classref-item-separator
  200. ----
  201. .. _class_EditorImportPlugin_method__get_resource_type:
  202. .. rst-class:: classref-method
  203. :ref:`String<class_String>` **_get_resource_type** **(** **)** |virtual| |const|
  204. Gets the Godot resource type associated with this loader. e.g. ``"Mesh"`` or ``"Animation"``.
  205. .. rst-class:: classref-item-separator
  206. ----
  207. .. _class_EditorImportPlugin_method__get_save_extension:
  208. .. rst-class:: classref-method
  209. :ref:`String<class_String>` **_get_save_extension** **(** **)** |virtual| |const|
  210. 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>`).
  211. .. rst-class:: classref-item-separator
  212. ----
  213. .. _class_EditorImportPlugin_method__get_visible_name:
  214. .. rst-class:: classref-method
  215. :ref:`String<class_String>` **_get_visible_name** **(** **)** |virtual| |const|
  216. 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".
  217. .. rst-class:: classref-item-separator
  218. ----
  219. .. _class_EditorImportPlugin_method__import:
  220. .. rst-class:: classref-method
  221. :ref:`int<class_int>` **_import** **(** :ref:`String<class_String>` source_file, :ref:`String<class_String>` save_path, :ref:`Dictionary<class_Dictionary>` options, :ref:`String[]<class_String>` platform_variants, :ref:`String[]<class_String>` gen_files **)** |virtual| |const|
  222. Imports ``source_file`` into ``save_path`` with the import ``options`` specified. The ``platform_variants`` and ``gen_files`` arrays will be modified by this function.
  223. This method must be overridden to do the actual importing work. See this class' description for an example of overriding this method.
  224. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  225. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  226. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  227. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  228. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  229. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`