reduce redundancy

This commit is contained in:
MihailRis
2024-07-10 06:51:14 +03:00
parent 5874abff98
commit 8edf9440a3
4 changed files with 5 additions and 6 deletions
+2 -2
View File
@@ -405,8 +405,8 @@ void Entities::render(Assets* assets, ModelBatch& batch, const Frustum& frustum,
}
bool Entities::hasBlockingInside(AABB aabb) {
auto view = registry.view<EntityId, Transform, Rigidbody>();
for (auto [entity, eid, transform, body] : view.each()) {
auto view = registry.view<EntityId, Rigidbody>();
for (auto [entity, eid, body] : view.each()) {
if (eid.def.blocking && aabb.intersect(body.hitbox.getAABB())) {
return true;
}