We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a98b79d commit 03e201eCopy full SHA for 03e201e
scripts/extension_api_parser/builtins.py
@@ -463,13 +463,6 @@ def parse_builtins_ignore_scalars_and_nil(builtin_classes: List[dict]) -> List[B
463
if spec["name"] in ("Nil", "bool", "int", "float"):
464
continue
465
466
- # TODO: remove me once https://github.com/godotengine/godot/pull/64692 is merged
467
- if spec["name"] in ("Transform2D", "AABB", "Basis", "Transform3D"):
468
- spec["has_destructor"] = False
469
-
470
- # TODO: remove me once https://github.com/godotengine/godot/pull/66181 is merged
471
- spec["is_keyed"] = spec["name"] == "Dictionary"
472
473
builtins.append(_parse_builtin(spec))
474
475
return builtins
0 commit comments