Skip to content

Commit 03e201e

Browse files
committed
Remove now-fixed workaround Godot issues 64692&66181
1 parent a98b79d commit 03e201e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

scripts/extension_api_parser/builtins.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -463,13 +463,6 @@ def parse_builtins_ignore_scalars_and_nil(builtin_classes: List[dict]) -> List[B
463463
if spec["name"] in ("Nil", "bool", "int", "float"):
464464
continue
465465

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-
473466
builtins.append(_parse_builtin(spec))
474467

475468
return builtins

0 commit comments

Comments
 (0)