removeAll method
Removes all items
from the collision detection, see remove.
Implementation
@override
void removeAll(Iterable<ShapeHitbox> items) {
broadphase.clear();
for (final item in items) {
remove(item);
}
}
Removes all items
from the collision detection, see remove.
@override
void removeAll(Iterable<ShapeHitbox> items) {
broadphase.clear();
for (final item in items) {
remove(item);
}
}