From b6d78d8eb7bcf57f0ae2d7ca7fdd129b5cde2c10 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Wed, 16 Aug 2023 13:57:54 +0200 Subject: [PATCH] Clarify that `Callable` will not be encoded with `var_to_bytes` (cherry picked from commit c909354396f1e35b9558178a48274e77ecb0f815) --- doc/classes/@GlobalScope.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index 75fe10d1fc0..0e2d8ba374a 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -1428,6 +1428,7 @@ Encodes a [Variant] value to a byte array, without encoding objects. Deserialization can be done with [method bytes_to_var]. [b]Note:[/b] If you need object serialization, see [method var_to_bytes_with_objects]. + [b]Note:[/b] Encoding [Callable] is not supported and will result in an empty value, regardless of the data. @@ -1435,6 +1436,7 @@ Encodes a [Variant] value to a byte array. Encoding objects is allowed (and can potentially include executable code). Deserialization can be done with [method bytes_to_var_with_objects]. + [b]Note:[/b] Encoding [Callable] is not supported and will result in an empty value, regardless of the data.