class_gdextensionmanager.rst 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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/4.2/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.2/doc/classes/GDExtensionManager.xml.
  6. .. _class_GDExtensionManager:
  7. GDExtensionManager
  8. ==================
  9. **Inherits:** :ref:`Object<class_Object>`
  10. .. container:: contribute
  11. There is currently no description for this class. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  12. .. rst-class:: classref-reftable-group
  13. Methods
  14. -------
  15. .. table::
  16. :widths: auto
  17. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+
  18. | :ref:`GDExtension<class_GDExtension>` | :ref:`get_extension<class_GDExtensionManager_method_get_extension>` **(** :ref:`String<class_String>` path **)** |
  19. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+
  20. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`get_loaded_extensions<class_GDExtensionManager_method_get_loaded_extensions>` **(** **)** |const| |
  21. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+
  22. | :ref:`bool<class_bool>` | :ref:`is_extension_loaded<class_GDExtensionManager_method_is_extension_loaded>` **(** :ref:`String<class_String>` path **)** |const| |
  23. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` | :ref:`load_extension<class_GDExtensionManager_method_load_extension>` **(** :ref:`String<class_String>` path **)** |
  25. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` | :ref:`reload_extension<class_GDExtensionManager_method_reload_extension>` **(** :ref:`String<class_String>` path **)** |
  27. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+
  28. | :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` | :ref:`unload_extension<class_GDExtensionManager_method_unload_extension>` **(** :ref:`String<class_String>` path **)** |
  29. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+
  30. .. rst-class:: classref-section-separator
  31. ----
  32. .. rst-class:: classref-descriptions-group
  33. Signals
  34. -------
  35. .. _class_GDExtensionManager_signal_extensions_reloaded:
  36. .. rst-class:: classref-signal
  37. **extensions_reloaded** **(** **)**
  38. Emitted after the editor has automatically reloaded any extensions.
  39. .. rst-class:: classref-section-separator
  40. ----
  41. .. rst-class:: classref-descriptions-group
  42. Enumerations
  43. ------------
  44. .. _enum_GDExtensionManager_LoadStatus:
  45. .. rst-class:: classref-enumeration
  46. enum **LoadStatus**:
  47. .. _class_GDExtensionManager_constant_LOAD_STATUS_OK:
  48. .. rst-class:: classref-enumeration-constant
  49. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_OK** = ``0``
  50. .. _class_GDExtensionManager_constant_LOAD_STATUS_FAILED:
  51. .. rst-class:: classref-enumeration-constant
  52. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_FAILED** = ``1``
  53. .. _class_GDExtensionManager_constant_LOAD_STATUS_ALREADY_LOADED:
  54. .. rst-class:: classref-enumeration-constant
  55. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_ALREADY_LOADED** = ``2``
  56. .. _class_GDExtensionManager_constant_LOAD_STATUS_NOT_LOADED:
  57. .. rst-class:: classref-enumeration-constant
  58. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_NOT_LOADED** = ``3``
  59. .. _class_GDExtensionManager_constant_LOAD_STATUS_NEEDS_RESTART:
  60. .. rst-class:: classref-enumeration-constant
  61. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_NEEDS_RESTART** = ``4``
  62. .. rst-class:: classref-section-separator
  63. ----
  64. .. rst-class:: classref-descriptions-group
  65. Method Descriptions
  66. -------------------
  67. .. _class_GDExtensionManager_method_get_extension:
  68. .. rst-class:: classref-method
  69. :ref:`GDExtension<class_GDExtension>` **get_extension** **(** :ref:`String<class_String>` path **)**
  70. .. container:: contribute
  71. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  72. .. rst-class:: classref-item-separator
  73. ----
  74. .. _class_GDExtensionManager_method_get_loaded_extensions:
  75. .. rst-class:: classref-method
  76. :ref:`PackedStringArray<class_PackedStringArray>` **get_loaded_extensions** **(** **)** |const|
  77. .. container:: contribute
  78. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  79. .. rst-class:: classref-item-separator
  80. ----
  81. .. _class_GDExtensionManager_method_is_extension_loaded:
  82. .. rst-class:: classref-method
  83. :ref:`bool<class_bool>` **is_extension_loaded** **(** :ref:`String<class_String>` path **)** |const|
  84. .. container:: contribute
  85. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  86. .. rst-class:: classref-item-separator
  87. ----
  88. .. _class_GDExtensionManager_method_load_extension:
  89. .. rst-class:: classref-method
  90. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **load_extension** **(** :ref:`String<class_String>` path **)**
  91. .. container:: contribute
  92. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  93. .. rst-class:: classref-item-separator
  94. ----
  95. .. _class_GDExtensionManager_method_reload_extension:
  96. .. rst-class:: classref-method
  97. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **reload_extension** **(** :ref:`String<class_String>` path **)**
  98. .. container:: contribute
  99. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  100. .. rst-class:: classref-item-separator
  101. ----
  102. .. _class_GDExtensionManager_method_unload_extension:
  103. .. rst-class:: classref-method
  104. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **unload_extension** **(** :ref:`String<class_String>` path **)**
  105. .. container:: contribute
  106. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  107. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  108. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  109. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  110. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  111. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  112. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  113. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`