feat: reduce the amount of duplicate work the broad-phase is doing for user changes and CCD + release v0.28.0 (#872)
* feat: reduce the amount of duplicate work the broad-phase is doing for user changes and CCD * Release v0.28.0 * chore: fix warnings * chore: clippy fixes * chore: more clippy fixes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
use rand::distributions::{Distribution, Standard};
|
||||
use rand::distr::{Distribution, StandardUniform};
|
||||
use rand::{SeedableRng, rngs::StdRng};
|
||||
use rapier_testbed3d::Testbed;
|
||||
use rapier3d::prelude::*;
|
||||
@@ -36,7 +36,7 @@ pub fn init_world(testbed: &mut Testbed) {
|
||||
let centerz = shift * (num / 2) as f32;
|
||||
|
||||
let mut rng = StdRng::seed_from_u64(0);
|
||||
let distribution = Standard;
|
||||
let distribution = StandardUniform;
|
||||
|
||||
for j in 0usize..25 {
|
||||
for i in 0..num {
|
||||
|
||||
Reference in New Issue
Block a user