class_rid.rst 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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/RID.xml.
  6. .. _class_RID:
  7. RID
  8. ===
  9. A handle for a :ref:`Resource<class_Resource>`'s unique identifier.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. The RID :ref:`Variant<class_Variant>` type is used to access a low-level resource by its unique ID. RIDs are opaque, which means they do not grant access to the resource by themselves. They are used by the low-level server classes, such as :ref:`DisplayServer<class_DisplayServer>`, :ref:`RenderingServer<class_RenderingServer>`, :ref:`TextServer<class_TextServer>`, etc.
  14. A low-level resource may correspond to a high-level :ref:`Resource<class_Resource>`, such as :ref:`Texture<class_Texture>` or :ref:`Mesh<class_Mesh>`.
  15. \ **Note:** RIDs are only useful during the current session. It won't correspond to a similar resource if sent over a network, or loaded from a file at a later time.
  16. .. note::
  17. There are notable differences when using this API with C#. See :ref:`doc_c_sharp_differences` for more information.
  18. .. rst-class:: classref-reftable-group
  19. Constructors
  20. ------------
  21. .. table::
  22. :widths: auto
  23. +-----------------------+---------------------------------------------------------------------------+
  24. | :ref:`RID<class_RID>` | :ref:`RID<class_RID_constructor_RID>`\ (\ ) |
  25. +-----------------------+---------------------------------------------------------------------------+
  26. | :ref:`RID<class_RID>` | :ref:`RID<class_RID_constructor_RID>`\ (\ from\: :ref:`RID<class_RID>`\ ) |
  27. +-----------------------+---------------------------------------------------------------------------+
  28. .. rst-class:: classref-reftable-group
  29. Methods
  30. -------
  31. .. table::
  32. :widths: auto
  33. +-------------------------+----------------------------------------------------------+
  34. | :ref:`int<class_int>` | :ref:`get_id<class_RID_method_get_id>`\ (\ ) |const| |
  35. +-------------------------+----------------------------------------------------------+
  36. | :ref:`bool<class_bool>` | :ref:`is_valid<class_RID_method_is_valid>`\ (\ ) |const| |
  37. +-------------------------+----------------------------------------------------------+
  38. .. rst-class:: classref-reftable-group
  39. Operators
  40. ---------
  41. .. table::
  42. :widths: auto
  43. +-------------------------+--------------------------------------------------------------------------------------+
  44. | :ref:`bool<class_bool>` | :ref:`operator !=<class_RID_operator_neq_RID>`\ (\ right\: :ref:`RID<class_RID>`\ ) |
  45. +-------------------------+--------------------------------------------------------------------------------------+
  46. | :ref:`bool<class_bool>` | :ref:`operator \<<class_RID_operator_lt_RID>`\ (\ right\: :ref:`RID<class_RID>`\ ) |
  47. +-------------------------+--------------------------------------------------------------------------------------+
  48. | :ref:`bool<class_bool>` | :ref:`operator \<=<class_RID_operator_lte_RID>`\ (\ right\: :ref:`RID<class_RID>`\ ) |
  49. +-------------------------+--------------------------------------------------------------------------------------+
  50. | :ref:`bool<class_bool>` | :ref:`operator ==<class_RID_operator_eq_RID>`\ (\ right\: :ref:`RID<class_RID>`\ ) |
  51. +-------------------------+--------------------------------------------------------------------------------------+
  52. | :ref:`bool<class_bool>` | :ref:`operator ><class_RID_operator_gt_RID>`\ (\ right\: :ref:`RID<class_RID>`\ ) |
  53. +-------------------------+--------------------------------------------------------------------------------------+
  54. | :ref:`bool<class_bool>` | :ref:`operator >=<class_RID_operator_gte_RID>`\ (\ right\: :ref:`RID<class_RID>`\ ) |
  55. +-------------------------+--------------------------------------------------------------------------------------+
  56. .. rst-class:: classref-section-separator
  57. ----
  58. .. rst-class:: classref-descriptions-group
  59. Constructor Descriptions
  60. ------------------------
  61. .. _class_RID_constructor_RID:
  62. .. rst-class:: classref-constructor
  63. :ref:`RID<class_RID>` **RID**\ (\ ) :ref:`🔗<class_RID_constructor_RID>`
  64. Constructs an empty **RID** with the invalid ID ``0``.
  65. .. rst-class:: classref-item-separator
  66. ----
  67. .. rst-class:: classref-constructor
  68. :ref:`RID<class_RID>` **RID**\ (\ from\: :ref:`RID<class_RID>`\ )
  69. Constructs a **RID** as a copy of the given **RID**.
  70. .. rst-class:: classref-section-separator
  71. ----
  72. .. rst-class:: classref-descriptions-group
  73. Method Descriptions
  74. -------------------
  75. .. _class_RID_method_get_id:
  76. .. rst-class:: classref-method
  77. :ref:`int<class_int>` **get_id**\ (\ ) |const| :ref:`🔗<class_RID_method_get_id>`
  78. Returns the ID of the referenced low-level resource.
  79. .. rst-class:: classref-item-separator
  80. ----
  81. .. _class_RID_method_is_valid:
  82. .. rst-class:: classref-method
  83. :ref:`bool<class_bool>` **is_valid**\ (\ ) |const| :ref:`🔗<class_RID_method_is_valid>`
  84. Returns ``true`` if the **RID** is not ``0``.
  85. .. rst-class:: classref-section-separator
  86. ----
  87. .. rst-class:: classref-descriptions-group
  88. Operator Descriptions
  89. ---------------------
  90. .. _class_RID_operator_neq_RID:
  91. .. rst-class:: classref-operator
  92. :ref:`bool<class_bool>` **operator !=**\ (\ right\: :ref:`RID<class_RID>`\ ) :ref:`🔗<class_RID_operator_neq_RID>`
  93. Returns ``true`` if the **RID**\ s are not equal.
  94. .. rst-class:: classref-item-separator
  95. ----
  96. .. _class_RID_operator_lt_RID:
  97. .. rst-class:: classref-operator
  98. :ref:`bool<class_bool>` **operator <**\ (\ right\: :ref:`RID<class_RID>`\ ) :ref:`🔗<class_RID_operator_lt_RID>`
  99. Returns ``true`` if the **RID**'s ID is less than ``right``'s ID.
  100. .. rst-class:: classref-item-separator
  101. ----
  102. .. _class_RID_operator_lte_RID:
  103. .. rst-class:: classref-operator
  104. :ref:`bool<class_bool>` **operator <=**\ (\ right\: :ref:`RID<class_RID>`\ ) :ref:`🔗<class_RID_operator_lte_RID>`
  105. Returns ``true`` if the **RID**'s ID is less than or equal to ``right``'s ID.
  106. .. rst-class:: classref-item-separator
  107. ----
  108. .. _class_RID_operator_eq_RID:
  109. .. rst-class:: classref-operator
  110. :ref:`bool<class_bool>` **operator ==**\ (\ right\: :ref:`RID<class_RID>`\ ) :ref:`🔗<class_RID_operator_eq_RID>`
  111. Returns ``true`` if both **RID**\ s are equal, which means they both refer to the same low-level resource.
  112. .. rst-class:: classref-item-separator
  113. ----
  114. .. _class_RID_operator_gt_RID:
  115. .. rst-class:: classref-operator
  116. :ref:`bool<class_bool>` **operator >**\ (\ right\: :ref:`RID<class_RID>`\ ) :ref:`🔗<class_RID_operator_gt_RID>`
  117. Returns ``true`` if the **RID**'s ID is greater than ``right``'s ID.
  118. .. rst-class:: classref-item-separator
  119. ----
  120. .. _class_RID_operator_gte_RID:
  121. .. rst-class:: classref-operator
  122. :ref:`bool<class_bool>` **operator >=**\ (\ right\: :ref:`RID<class_RID>`\ ) :ref:`🔗<class_RID_operator_gte_RID>`
  123. Returns ``true`` if the **RID**'s ID is greater than or equal to ``right``'s ID.
  124. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  125. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  126. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  127. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  128. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  129. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  130. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  131. .. |void| replace:: :abbr:`void (No return value.)`