We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
overlapping_sprites
I'm running into some unexpected behavior with overlapping_sprites, and set up a minimal repro here: https://github.com/paulstraw/bzpd-overlapping-sprites/blob/main/src/lib.rs#L106-L108. Specifically:
The text was updated successfully, but these errors were encountered:
Yup. Thanks! According to documentation
The caller is responsible for freeing the returned array
we have to dealloc it, not just borrow.
So, also need to check and fix same for
checkCollisions
moveWithCollisions
querySpritesAtPoint
querySpritesInRect
querySpritesAlongLine
querySpriteInfoAlongLine
overlappingSprites
allOverlappingSprites
this is original function names in the c-api
Sorry, something went wrong.
Fixed in #413
Successfully merging a pull request may close this issue.
I'm running into some unexpected behavior with
overlapping_sprites
, and set up a minimal repro here: https://github.com/paulstraw/bzpd-overlapping-sprites/blob/main/src/lib.rs#L106-L108. Specifically:The text was updated successfully, but these errors were encountered: