Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FreeObject is not null in Godot 4.3 dev 1 #1

Closed
thiagola92 opened this issue Dec 21, 2023 · 1 comment
Closed

FreeObject is not null in Godot 4.3 dev 1 #1

thiagola92 opened this issue Dec 21, 2023 · 1 comment

Comments

@thiagola92
Copy link
Owner

# Before this node free itself, it needs to free it children.
# So there is a chance that the child doesn't exist anymore and
# the array is holding a <Freed Object>.
if _bone_shapes[i] == null or _bone_outline_shapes[i] == null:
return

After godotengine/godot#73896, it needs to change to:

not _bone_shapes[i] or not _bone_outline_shapes[i]
@thiagola92
Copy link
Owner Author

ee2d2a3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant