diff options
author | Muhannad Elbolaky <think-basin-amber@duck.com> | 2024-10-14 16:05:54 +0300 |
---|---|---|
committer | Muhannad Elbolaky <think-basin-amber@duck.com> | 2024-10-15 04:54:52 +0300 |
commit | f90d13478a7691d82dce49a07dbcf52d702d070e (patch) | |
tree | 21776ec4a9404dc74952f1812f1f2bcd9da314b5 /doc/classes/PackedByteArray.xml | |
parent | c04c1f2fa3cfab0011d9c5af2ecbc807f1baadcf (diff) | |
download | redot-engine-f90d13478a7691d82dce49a07dbcf52d702d070e.tar.gz |
fix: replace "Godot" to "Redot"
Trying to change "Godot" to "Redot" in the doc while acknowledging the reference to previous Godot versions like Godot 3.X.
Diffstat (limited to 'doc/classes/PackedByteArray.xml')
-rw-r--r-- | doc/classes/PackedByteArray.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/PackedByteArray.xml b/doc/classes/PackedByteArray.xml index 75193ae8ed..106dbc5c41 100644 --- a/doc/classes/PackedByteArray.xml +++ b/doc/classes/PackedByteArray.xml @@ -465,7 +465,7 @@ <method name="to_float64_array" qualifiers="const"> <return type="PackedFloat64Array" /> <description> - Returns a copy of the data converted to a [PackedFloat64Array], where each block of 8 bytes has been converted to a 64-bit float (C++ [code]double[/code], Godot [float]). + Returns a copy of the data converted to a [PackedFloat64Array], where each block of 8 bytes has been converted to a 64-bit float (C++ [code]double[/code], Redot [float]). The size of the input array must be a multiple of 8 (size of 64-bit double). The size of the new array will be [code]byte_array.size() / 8[/code]. If the original data can't be converted to 64-bit floats, the resulting data is undefined. </description> @@ -481,7 +481,7 @@ <method name="to_int64_array" qualifiers="const"> <return type="PackedInt64Array" /> <description> - Returns a copy of the data converted to a [PackedInt64Array], where each block of 8 bytes has been converted to a signed 64-bit integer (C++ [code]int64_t[/code], Godot [int]). + Returns a copy of the data converted to a [PackedInt64Array], where each block of 8 bytes has been converted to a signed 64-bit integer (C++ [code]int64_t[/code], Redot [int]). The size of the input array must be a multiple of 8 (size of 64-bit integer). The size of the new array will be [code]byte_array.size() / 8[/code]. If the original data can't be converted to signed 64-bit integers, the resulting data is undefined. </description> |