Ensure pair callback data is set to null when it's null.

This commit is contained in:
Marcel Admiraal 2020-06-13 14:37:40 +01:00
parent 6c9b7c27d5
commit a48e13101d
1 changed files with 1 additions and 4 deletions

View File

@ -83,10 +83,7 @@ void BroadPhase2DHashGrid::_check_motion(Element *p_elem) {
if (pairing) {
if (pair_callback) {
void *ud = pair_callback(p_elem->owner, p_elem->subindex, E->key()->owner, E->key()->subindex, pair_userdata);
if (ud) {
E->get()->ud = ud;
}
E->get()->ud = pair_callback(p_elem->owner, p_elem->subindex, E->key()->owner, E->key()->subindex, pair_userdata);
}
} else {