classref: Sync with current master branch (ab6c6ee)

This commit is contained in:
Godot Organization
2025-10-25 03:26:32 +00:00
parent e11d59a2ee
commit df22cbda0a
33 changed files with 789 additions and 171 deletions

View File

@@ -1237,8 +1237,6 @@ If you need to return the removed element, use :ref:`pop_at()<class_Array_method
\ **Note:** This method shifts every element's index after ``position`` back, which may have a noticeable performance cost, especially on larger arrays.
\ **Note:** The ``position`` cannot be negative. To remove an element relative to the end of the array, use ``arr.remove_at(arr.size() - (i + 1))``. To remove the last element from the array, use ``arr.resize(arr.size() - 1)``.
.. rst-class:: classref-item-separator
----