Merge pull request #620 from akien-mga/bindgen-fix-NodePath-escape

pull/621/head
Rémi Verschelde 2021-09-27 12:51:07 +02:00 committed by GitHub
commit bfdf55afd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()"