class_gdextensionmanager.rst 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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.0/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.0/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. Enumerations
  34. ------------
  35. .. _enum_GDExtensionManager_LoadStatus:
  36. .. rst-class:: classref-enumeration
  37. enum **LoadStatus**:
  38. .. _class_GDExtensionManager_constant_LOAD_STATUS_OK:
  39. .. rst-class:: classref-enumeration-constant
  40. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_OK** = ``0``
  41. .. _class_GDExtensionManager_constant_LOAD_STATUS_FAILED:
  42. .. rst-class:: classref-enumeration-constant
  43. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_FAILED** = ``1``
  44. .. _class_GDExtensionManager_constant_LOAD_STATUS_ALREADY_LOADED:
  45. .. rst-class:: classref-enumeration-constant
  46. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_ALREADY_LOADED** = ``2``
  47. .. _class_GDExtensionManager_constant_LOAD_STATUS_NOT_LOADED:
  48. .. rst-class:: classref-enumeration-constant
  49. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_NOT_LOADED** = ``3``
  50. .. _class_GDExtensionManager_constant_LOAD_STATUS_NEEDS_RESTART:
  51. .. rst-class:: classref-enumeration-constant
  52. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **LOAD_STATUS_NEEDS_RESTART** = ``4``
  53. .. rst-class:: classref-section-separator
  54. ----
  55. .. rst-class:: classref-descriptions-group
  56. Method Descriptions
  57. -------------------
  58. .. _class_GDExtensionManager_method_get_extension:
  59. .. rst-class:: classref-method
  60. :ref:`GDExtension<class_GDExtension>` **get_extension** **(** :ref:`String<class_String>` path **)**
  61. .. container:: contribute
  62. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  63. .. rst-class:: classref-item-separator
  64. ----
  65. .. _class_GDExtensionManager_method_get_loaded_extensions:
  66. .. rst-class:: classref-method
  67. :ref:`PackedStringArray<class_PackedStringArray>` **get_loaded_extensions** **(** **)** |const|
  68. .. container:: contribute
  69. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  70. .. rst-class:: classref-item-separator
  71. ----
  72. .. _class_GDExtensionManager_method_is_extension_loaded:
  73. .. rst-class:: classref-method
  74. :ref:`bool<class_bool>` **is_extension_loaded** **(** :ref:`String<class_String>` path **)** |const|
  75. .. container:: contribute
  76. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  77. .. rst-class:: classref-item-separator
  78. ----
  79. .. _class_GDExtensionManager_method_load_extension:
  80. .. rst-class:: classref-method
  81. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **load_extension** **(** :ref:`String<class_String>` path **)**
  82. .. container:: contribute
  83. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  84. .. rst-class:: classref-item-separator
  85. ----
  86. .. _class_GDExtensionManager_method_reload_extension:
  87. .. rst-class:: classref-method
  88. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **reload_extension** **(** :ref:`String<class_String>` path **)**
  89. .. container:: contribute
  90. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  91. .. rst-class:: classref-item-separator
  92. ----
  93. .. _class_GDExtensionManager_method_unload_extension:
  94. .. rst-class:: classref-method
  95. :ref:`LoadStatus<enum_GDExtensionManager_LoadStatus>` **unload_extension** **(** :ref:`String<class_String>` path **)**
  96. .. container:: contribute
  97. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  98. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  99. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  100. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  101. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  102. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  103. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`