diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-01-23 16:39:26 +0100 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-04-08 11:35:27 +0200 |
commit | 23782b898bdc0fb7f6a8dde5f1c2f2411a0ddccf (patch) | |
tree | a995ff09446cb7a3fbc91a5b5acad5481979a2eb /doc/classes/PackedInt32Array.xml | |
parent | 980e4d7955770e276055aac41df84632aef42a13 (diff) | |
download | redot-engine-23782b898bdc0fb7f6a8dde5f1c2f2411a0ddccf.tar.gz |
Add further details on properties returning `Packed*Array`
Diffstat (limited to 'doc/classes/PackedInt32Array.xml')
-rw-r--r-- | doc/classes/PackedInt32Array.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/PackedInt32Array.xml b/doc/classes/PackedInt32Array.xml index e6396e2a93..93b2ae7394 100644 --- a/doc/classes/PackedInt32Array.xml +++ b/doc/classes/PackedInt32Array.xml @@ -6,6 +6,7 @@ <description> An array specifically designed to hold 32-bit integer values. Packs data tightly, so it saves memory for large array sizes. [b]Note:[/b] This type stores signed 32-bit integers, which means it can take values in the interval [code][-2^31, 2^31 - 1][/code], i.e. [code][-2147483648, 2147483647][/code]. Exceeding those bounds will wrap around. In comparison, [int] uses signed 64-bit integers which can hold much larger values. If you need to pack 64-bit integers tightly, see [PackedInt64Array]. + [b]Note:[/b] Packed arrays are always passed by reference. To get a copy of an array that can be modified independently of the original array, use [method duplicate]. This is [i]not[/i] the case for built-in properties and methods. The returned packed array of these are a copies, and changing it will [i]not[/i] affect the original value. To update a built-in property you need to modify the returned array, and then assign it to the property again. </description> <tutorials> </tutorials> |