Add default argument processing for NodePath

(cherry picked from commit 37e7a6da05)
This commit is contained in:
A Thousand Ships
2024-06-13 17:17:33 +02:00
committed by David Snopek
parent 65058828a6
commit a648650c5d

View File

@@ -2310,6 +2310,7 @@ def correct_default_value(value, type_name):
"null": "nullptr",
'""': "String()",
'&""': "StringName()",
'^""': "NodePath()",
"[]": "Array()",
"{}": "Dictionary()",
"Transform2D(1, 0, 0, 1, 0, 0)": "Transform2D()", # Default transform.
@@ -2323,6 +2324,8 @@ def correct_default_value(value, type_name):
return f"{{}}"
if value.startswith("&"):
return value[1::]
if value.startswith("^"):
return value[1::]
return value