Skip to content
Snippets Groups Projects
Commit 83f942f5 authored by Michal Petr's avatar Michal Petr
Browse files

refactor: Removed unused variable

parent 488d7472
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,7 @@ namespace tut_collisions { ...@@ -153,7 +153,7 @@ namespace tut_collisions {
if (m_is_sim_running) { if (m_is_sim_running) {
// Feel free to swap between the algorithms to see how they affect the performance of the simulation and // Feel free to swap between the algorithms to see how they affect the performance of the simulation and
// how they act in different scenarios. // how they act in different scenarios.
const auto collision_file = phx::collision_system()->detect_collisions(m_world, phx::BroadPhaseType::SweepAndPrune, phx::NarrowPhaseType::GJK); phx::collision_system()->detect_collisions(m_world, phx::BroadPhaseType::SweepAndPrune, phx::NarrowPhaseType::GJK);
} }
// If you run the simulation now, you can enable the AABB's by pressing F2, where you'll see the AABB's changing // If you run the simulation now, you can enable the AABB's by pressing F2, where you'll see the AABB's changing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment