class_packedcolorarray.rst 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  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/PackedColorArray.xml.
  6. .. _class_PackedColorArray:
  7. PackedColorArray
  8. ================
  9. A packed array of :ref:`Color<class_Color>`\ s.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. An array specifically designed to hold :ref:`Color<class_Color>`. Packs data tightly, so it saves memory for large array sizes.
  14. .. rst-class:: classref-reftable-group
  15. Constructors
  16. ------------
  17. .. table::
  18. :widths: auto
  19. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  20. | :ref:`PackedColorArray<class_PackedColorArray>` | :ref:`PackedColorArray<class_PackedColorArray_constructor_PackedColorArray>` **(** **)** |
  21. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  22. | :ref:`PackedColorArray<class_PackedColorArray>` | :ref:`PackedColorArray<class_PackedColorArray_constructor_PackedColorArray>` **(** :ref:`PackedColorArray<class_PackedColorArray>` from **)** |
  23. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`PackedColorArray<class_PackedColorArray>` | :ref:`PackedColorArray<class_PackedColorArray_constructor_PackedColorArray>` **(** :ref:`Array<class_Array>` from **)** |
  25. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  26. .. rst-class:: classref-reftable-group
  27. Methods
  28. -------
  29. .. table::
  30. :widths: auto
  31. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  32. | :ref:`bool<class_bool>` | :ref:`append<class_PackedColorArray_method_append>` **(** :ref:`Color<class_Color>` value **)** |
  33. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  34. | void | :ref:`append_array<class_PackedColorArray_method_append_array>` **(** :ref:`PackedColorArray<class_PackedColorArray>` array **)** |
  35. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`int<class_int>` | :ref:`bsearch<class_PackedColorArray_method_bsearch>` **(** :ref:`Color<class_Color>` value, :ref:`bool<class_bool>` before=true **)** |
  37. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  38. | void | :ref:`clear<class_PackedColorArray_method_clear>` **(** **)** |
  39. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`int<class_int>` | :ref:`count<class_PackedColorArray_method_count>` **(** :ref:`Color<class_Color>` value **)** |const| |
  41. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`PackedColorArray<class_PackedColorArray>` | :ref:`duplicate<class_PackedColorArray_method_duplicate>` **(** **)** |
  43. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  44. | void | :ref:`fill<class_PackedColorArray_method_fill>` **(** :ref:`Color<class_Color>` value **)** |
  45. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`int<class_int>` | :ref:`find<class_PackedColorArray_method_find>` **(** :ref:`Color<class_Color>` value, :ref:`int<class_int>` from=0 **)** |const| |
  47. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`bool<class_bool>` | :ref:`has<class_PackedColorArray_method_has>` **(** :ref:`Color<class_Color>` value **)** |const| |
  49. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`int<class_int>` | :ref:`insert<class_PackedColorArray_method_insert>` **(** :ref:`int<class_int>` at_index, :ref:`Color<class_Color>` value **)** |
  51. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`bool<class_bool>` | :ref:`is_empty<class_PackedColorArray_method_is_empty>` **(** **)** |const| |
  53. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`bool<class_bool>` | :ref:`push_back<class_PackedColorArray_method_push_back>` **(** :ref:`Color<class_Color>` value **)** |
  55. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  56. | void | :ref:`remove_at<class_PackedColorArray_method_remove_at>` **(** :ref:`int<class_int>` index **)** |
  57. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`int<class_int>` | :ref:`resize<class_PackedColorArray_method_resize>` **(** :ref:`int<class_int>` new_size **)** |
  59. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  60. | void | :ref:`reverse<class_PackedColorArray_method_reverse>` **(** **)** |
  61. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`int<class_int>` | :ref:`rfind<class_PackedColorArray_method_rfind>` **(** :ref:`Color<class_Color>` value, :ref:`int<class_int>` from=-1 **)** |const| |
  63. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  64. | void | :ref:`set<class_PackedColorArray_method_set>` **(** :ref:`int<class_int>` index, :ref:`Color<class_Color>` value **)** |
  65. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`int<class_int>` | :ref:`size<class_PackedColorArray_method_size>` **(** **)** |const| |
  67. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`PackedColorArray<class_PackedColorArray>` | :ref:`slice<class_PackedColorArray_method_slice>` **(** :ref:`int<class_int>` begin, :ref:`int<class_int>` end=2147483647 **)** |const| |
  69. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  70. | void | :ref:`sort<class_PackedColorArray_method_sort>` **(** **)** |
  71. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`to_byte_array<class_PackedColorArray_method_to_byte_array>` **(** **)** |const| |
  73. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  74. .. rst-class:: classref-reftable-group
  75. Operators
  76. ---------
  77. .. table::
  78. :widths: auto
  79. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`bool<class_bool>` | :ref:`operator !=<class_PackedColorArray_operator_neq_PackedColorArray>` **(** :ref:`PackedColorArray<class_PackedColorArray>` right **)** |
  81. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  82. | :ref:`PackedColorArray<class_PackedColorArray>` | :ref:`operator +<class_PackedColorArray_operator_sum_PackedColorArray>` **(** :ref:`PackedColorArray<class_PackedColorArray>` right **)** |
  83. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`bool<class_bool>` | :ref:`operator ==<class_PackedColorArray_operator_eq_PackedColorArray>` **(** :ref:`PackedColorArray<class_PackedColorArray>` right **)** |
  85. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`Color<class_Color>` | :ref:`operator []<class_PackedColorArray_operator_idx_int>` **(** :ref:`int<class_int>` index **)** |
  87. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  88. .. rst-class:: classref-section-separator
  89. ----
  90. .. rst-class:: classref-descriptions-group
  91. Constructor Descriptions
  92. ------------------------
  93. .. _class_PackedColorArray_constructor_PackedColorArray:
  94. .. rst-class:: classref-constructor
  95. :ref:`PackedColorArray<class_PackedColorArray>` **PackedColorArray** **(** **)**
  96. Constructs an empty **PackedColorArray**.
  97. .. rst-class:: classref-item-separator
  98. ----
  99. .. rst-class:: classref-constructor
  100. :ref:`PackedColorArray<class_PackedColorArray>` **PackedColorArray** **(** :ref:`PackedColorArray<class_PackedColorArray>` from **)**
  101. Constructs a **PackedColorArray** as a copy of the given **PackedColorArray**.
  102. .. rst-class:: classref-item-separator
  103. ----
  104. .. rst-class:: classref-constructor
  105. :ref:`PackedColorArray<class_PackedColorArray>` **PackedColorArray** **(** :ref:`Array<class_Array>` from **)**
  106. Constructs a new **PackedColorArray**. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
  107. .. rst-class:: classref-section-separator
  108. ----
  109. .. rst-class:: classref-descriptions-group
  110. Method Descriptions
  111. -------------------
  112. .. _class_PackedColorArray_method_append:
  113. .. rst-class:: classref-method
  114. :ref:`bool<class_bool>` **append** **(** :ref:`Color<class_Color>` value **)**
  115. Appends an element at the end of the array (alias of :ref:`push_back<class_PackedColorArray_method_push_back>`).
  116. .. rst-class:: classref-item-separator
  117. ----
  118. .. _class_PackedColorArray_method_append_array:
  119. .. rst-class:: classref-method
  120. void **append_array** **(** :ref:`PackedColorArray<class_PackedColorArray>` array **)**
  121. Appends a **PackedColorArray** at the end of this array.
  122. .. rst-class:: classref-item-separator
  123. ----
  124. .. _class_PackedColorArray_method_bsearch:
  125. .. rst-class:: classref-method
  126. :ref:`int<class_int>` **bsearch** **(** :ref:`Color<class_Color>` value, :ref:`bool<class_bool>` before=true **)**
  127. Finds the index of an existing value (or the insertion index that maintains sorting order, if the value is not yet present in the array) using binary search. Optionally, a ``before`` specifier can be passed. If ``false``, the returned index comes after all existing entries of the value in the array.
  128. \ **Note:** Calling :ref:`bsearch<class_PackedColorArray_method_bsearch>` on an unsorted array results in unexpected behavior.
  129. .. rst-class:: classref-item-separator
  130. ----
  131. .. _class_PackedColorArray_method_clear:
  132. .. rst-class:: classref-method
  133. void **clear** **(** **)**
  134. Clears the array. This is equivalent to using :ref:`resize<class_PackedColorArray_method_resize>` with a size of ``0``.
  135. .. rst-class:: classref-item-separator
  136. ----
  137. .. _class_PackedColorArray_method_count:
  138. .. rst-class:: classref-method
  139. :ref:`int<class_int>` **count** **(** :ref:`Color<class_Color>` value **)** |const|
  140. Returns the number of times an element is in the array.
  141. .. rst-class:: classref-item-separator
  142. ----
  143. .. _class_PackedColorArray_method_duplicate:
  144. .. rst-class:: classref-method
  145. :ref:`PackedColorArray<class_PackedColorArray>` **duplicate** **(** **)**
  146. Creates a copy of the array, and returns it.
  147. .. rst-class:: classref-item-separator
  148. ----
  149. .. _class_PackedColorArray_method_fill:
  150. .. rst-class:: classref-method
  151. void **fill** **(** :ref:`Color<class_Color>` value **)**
  152. Assigns the given value to all elements in the array. This can typically be used together with :ref:`resize<class_PackedColorArray_method_resize>` to create an array with a given size and initialized elements.
  153. .. rst-class:: classref-item-separator
  154. ----
  155. .. _class_PackedColorArray_method_find:
  156. .. rst-class:: classref-method
  157. :ref:`int<class_int>` **find** **(** :ref:`Color<class_Color>` value, :ref:`int<class_int>` from=0 **)** |const|
  158. Searches the array for a value and returns its index or ``-1`` if not found. Optionally, the initial search index can be passed.
  159. .. rst-class:: classref-item-separator
  160. ----
  161. .. _class_PackedColorArray_method_has:
  162. .. rst-class:: classref-method
  163. :ref:`bool<class_bool>` **has** **(** :ref:`Color<class_Color>` value **)** |const|
  164. Returns ``true`` if the array contains ``value``.
  165. .. rst-class:: classref-item-separator
  166. ----
  167. .. _class_PackedColorArray_method_insert:
  168. .. rst-class:: classref-method
  169. :ref:`int<class_int>` **insert** **(** :ref:`int<class_int>` at_index, :ref:`Color<class_Color>` value **)**
  170. Inserts a new element at a given position in the array. The position must be valid, or at the end of the array (``idx == size()``).
  171. .. rst-class:: classref-item-separator
  172. ----
  173. .. _class_PackedColorArray_method_is_empty:
  174. .. rst-class:: classref-method
  175. :ref:`bool<class_bool>` **is_empty** **(** **)** |const|
  176. Returns ``true`` if the array is empty.
  177. .. rst-class:: classref-item-separator
  178. ----
  179. .. _class_PackedColorArray_method_push_back:
  180. .. rst-class:: classref-method
  181. :ref:`bool<class_bool>` **push_back** **(** :ref:`Color<class_Color>` value **)**
  182. Appends a value to the array.
  183. .. rst-class:: classref-item-separator
  184. ----
  185. .. _class_PackedColorArray_method_remove_at:
  186. .. rst-class:: classref-method
  187. void **remove_at** **(** :ref:`int<class_int>` index **)**
  188. Removes an element from the array by index.
  189. .. rst-class:: classref-item-separator
  190. ----
  191. .. _class_PackedColorArray_method_resize:
  192. .. rst-class:: classref-method
  193. :ref:`int<class_int>` **resize** **(** :ref:`int<class_int>` new_size **)**
  194. Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size.
  195. .. rst-class:: classref-item-separator
  196. ----
  197. .. _class_PackedColorArray_method_reverse:
  198. .. rst-class:: classref-method
  199. void **reverse** **(** **)**
  200. Reverses the order of the elements in the array.
  201. .. rst-class:: classref-item-separator
  202. ----
  203. .. _class_PackedColorArray_method_rfind:
  204. .. rst-class:: classref-method
  205. :ref:`int<class_int>` **rfind** **(** :ref:`Color<class_Color>` value, :ref:`int<class_int>` from=-1 **)** |const|
  206. Searches the array in reverse order. Optionally, a start search index can be passed. If negative, the start index is considered relative to the end of the array.
  207. .. rst-class:: classref-item-separator
  208. ----
  209. .. _class_PackedColorArray_method_set:
  210. .. rst-class:: classref-method
  211. void **set** **(** :ref:`int<class_int>` index, :ref:`Color<class_Color>` value **)**
  212. Changes the :ref:`Color<class_Color>` at the given index.
  213. .. rst-class:: classref-item-separator
  214. ----
  215. .. _class_PackedColorArray_method_size:
  216. .. rst-class:: classref-method
  217. :ref:`int<class_int>` **size** **(** **)** |const|
  218. Returns the number of elements in the array.
  219. .. rst-class:: classref-item-separator
  220. ----
  221. .. _class_PackedColorArray_method_slice:
  222. .. rst-class:: classref-method
  223. :ref:`PackedColorArray<class_PackedColorArray>` **slice** **(** :ref:`int<class_int>` begin, :ref:`int<class_int>` end=2147483647 **)** |const|
  224. Returns the slice of the **PackedColorArray**, from ``begin`` (inclusive) to ``end`` (exclusive), as a new **PackedColorArray**.
  225. The absolute value of ``begin`` and ``end`` will be clamped to the array size, so the default value for ``end`` makes it slice to the size of the array by default (i.e. ``arr.slice(1)`` is a shorthand for ``arr.slice(1, arr.size())``).
  226. If either ``begin`` or ``end`` are negative, they will be relative to the end of the array (i.e. ``arr.slice(0, -2)`` is a shorthand for ``arr.slice(0, arr.size() - 2)``).
  227. .. rst-class:: classref-item-separator
  228. ----
  229. .. _class_PackedColorArray_method_sort:
  230. .. rst-class:: classref-method
  231. void **sort** **(** **)**
  232. Sorts the elements of the array in ascending order.
  233. .. rst-class:: classref-item-separator
  234. ----
  235. .. _class_PackedColorArray_method_to_byte_array:
  236. .. rst-class:: classref-method
  237. :ref:`PackedByteArray<class_PackedByteArray>` **to_byte_array** **(** **)** |const|
  238. Returns a :ref:`PackedByteArray<class_PackedByteArray>` with each color encoded as bytes.
  239. .. rst-class:: classref-section-separator
  240. ----
  241. .. rst-class:: classref-descriptions-group
  242. Operator Descriptions
  243. ---------------------
  244. .. _class_PackedColorArray_operator_neq_PackedColorArray:
  245. .. rst-class:: classref-operator
  246. :ref:`bool<class_bool>` **operator !=** **(** :ref:`PackedColorArray<class_PackedColorArray>` right **)**
  247. Returns ``true`` if contents of the arrays differ.
  248. .. rst-class:: classref-item-separator
  249. ----
  250. .. _class_PackedColorArray_operator_sum_PackedColorArray:
  251. .. rst-class:: classref-operator
  252. :ref:`PackedColorArray<class_PackedColorArray>` **operator +** **(** :ref:`PackedColorArray<class_PackedColorArray>` right **)**
  253. Returns a new **PackedColorArray** with contents of ``right`` added at the end of this array. For better performance, consider using :ref:`append_array<class_PackedColorArray_method_append_array>` instead.
  254. .. rst-class:: classref-item-separator
  255. ----
  256. .. _class_PackedColorArray_operator_eq_PackedColorArray:
  257. .. rst-class:: classref-operator
  258. :ref:`bool<class_bool>` **operator ==** **(** :ref:`PackedColorArray<class_PackedColorArray>` right **)**
  259. Returns ``true`` if contents of both arrays are the same, i.e. they have all equal :ref:`Color<class_Color>`\ s at the corresponding indices.
  260. .. rst-class:: classref-item-separator
  261. ----
  262. .. _class_PackedColorArray_operator_idx_int:
  263. .. rst-class:: classref-operator
  264. :ref:`Color<class_Color>` **operator []** **(** :ref:`int<class_int>` index **)**
  265. Returns the :ref:`Color<class_Color>` at index ``index``. Negative indices can be used to access the elements starting from the end. Using index out of array's bounds will result in an error.
  266. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  267. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  268. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  269. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  270. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  271. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`