Merge pull request #620 from akien-mga/bindgen-fix-NodePath-escape
commit
bfdf55afd9
|
@ -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()"
|
||||
|
|
Loading…
Reference in New Issue