diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-02-13 16:18:12 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-03-21 15:39:54 +0200 |
commit | d72b5632505a308e7f7a8a534d308884e80936db (patch) | |
tree | 58d4b1117b9a31f9133748becf41b0c06b1693ed /doc/classes/PackedByteArray.xml | |
parent | 2a05522283fbd8ce9c887b17548debf4bcd3e8a4 (diff) | |
download | redot-engine-d72b5632505a308e7f7a8a534d308884e80936db.tar.gz |
Add GDScript `to_wchar_buffer` and `get_string_from_wchar` functions.
Diffstat (limited to 'doc/classes/PackedByteArray.xml')
-rw-r--r-- | doc/classes/PackedByteArray.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/PackedByteArray.xml b/doc/classes/PackedByteArray.xml index 081215f6b7..a3f23fa7ae 100644 --- a/doc/classes/PackedByteArray.xml +++ b/doc/classes/PackedByteArray.xml @@ -328,6 +328,12 @@ Converts UTF-8 encoded array to [String]. Slower than [method get_string_from_ascii] but supports UTF-8 encoded data. Use this function if you are unsure about the source of the data. For user input this function should always be preferred. Returns empty string if source array is not valid UTF-8 string. </description> </method> + <method name="get_string_from_wchar" qualifiers="const"> + <return type="String" /> + <description> + Converts wide character ([code]wchar_t[/code], UTF-16 on Windows, UTF-32 on other platforms) encoded array to [String]. Returns empty string if source array is not valid wide string. + </description> + </method> <method name="has" qualifiers="const"> <return type="bool" /> <param index="0" name="value" type="int" /> |