Skip to content

Commit

Permalink
Merge branch 'master' into split_rapiercontext
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrixyz committed Oct 14, 2024
2 parents fe1b49a + 3cf2b93 commit 83c795f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/pipeline/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,7 @@ mod test {
std::time::Duration::from_secs_f32(1f32 / 60f32),
));

for i in 0..100 {
dbg!(i);
for _ in 0..100 {
app.update();
}
return;
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/systems/multiple_rapier_contexts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub fn on_change_world(
})
.unwrap_or(false)
{
remove_old_physics(dbg!(entity), &mut commands);
remove_old_physics(entity, &mut commands);
bubble_down_world_change(
&mut commands,
entity,
Expand Down

0 comments on commit 83c795f

Please sign in to comment.