Browse Source

Merge pull request #79813 from AThousandShips/callable_doc

Clarify that `Callable` will not be encoded with `var_to_bytes`
Yuri Sizov 1 năm trước cách đây
mục cha
commit
79d818478f
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      doc/classes/@GlobalScope.xml

+ 2 - 0
doc/classes/@GlobalScope.xml

@@ -1429,6 +1429,7 @@
 			<description>
 				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.
 			</description>
 		</method>
 		<method name="var_to_bytes_with_objects">
@@ -1436,6 +1437,7 @@
 			<param index="0" name="variable" type="Variant" />
 			<description>
 				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.
 			</description>
 		</method>
 		<method name="var_to_str">