bindgen: Properly escape NodePath in default args

pull/620/head
Rémi Verschelde 2021-09-27 12:41:46 +02:00
parent 4e8508ad53
commit 83ef64079b
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ def generate_class_header(used_classes, c, use_template_get_node):
return "Rect2" + default_value
if _type == "Variant":
return "Variant()" if default_value == "Null" else default_value
if _type == "String":
if _type == "String" or _type == "NodePath":
return "\"" + default_value + "\""
if _type == "RID":
return "RID()"