Alexey Volkov
Alexey Volkov
# Description Quad tree broadphase support. ## Checklist - [x] The title of my PR starts with a [Conventional Commit] prefix (`fix:`, `feat:`, `docs:` etc). - [x] I have read...
# Current bug behavior Removed childrent are re-added into component whish moved from one parent to another at same update cycle. # Expected behavior Removed components are removed. They should...
# What could be improved Ideally, we cah check `allowSiblingCollision` at broadphase, before creating unnecesary `CollisionProspect` for siblings pairs. And skip several iterations over "potentials" list later. # Why should...
# What could be improved Currently `onComponentTypeCheck` runs per-component and allows to decide if one component could ever to collide with another. The result is also saved per-component, so iw...