Fix binding when default parameter is a PoolByteArray.

Like done for the other pool array types.
pull/590/head
Fabio Alessandrelli 2021-07-17 18:06:50 +02:00
parent e08ecdc28c
commit 024ffef50f
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ def generate_class_header(used_classes, c, use_template_get_node):
return default_value.lower()
if _type == "Array":
return "Array()"
if _type in ["PoolVector2Array", "PoolStringArray", "PoolVector3Array", "PoolColorArray", "PoolIntArray", "PoolRealArray"]:
if _type in ["PoolVector2Array", "PoolStringArray", "PoolVector3Array", "PoolColorArray", "PoolIntArray", "PoolRealArray", "PoolByteArray"]:
return _type + "()"
if _type == "Vector2":
return "Vector2" + default_value