Skip to content

Commit

Permalink
Fix rapier again :D
Browse files Browse the repository at this point in the history
  • Loading branch information
hakolao committed May 12, 2024
1 parent 5ec6f85 commit 73582a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/lines.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ struct PhysicsWorld {
pub collider_set: ColliderSet,
pub integration_parameters: IntegrationParameters,
pub island_manager: IslandManager,
pub broad_phase: BroadPhase,
pub broad_phase: DefaultBroadPhase,
pub narrow_phase: NarrowPhase,
pub impulse_joint_set: ImpulseJointSet,
pub multibody_joint_set: MultibodyJointSet,
Expand All @@ -270,7 +270,7 @@ impl PhysicsWorld {
collider_set: ColliderSet::new(),
integration_parameters: IntegrationParameters::default(),
island_manager: IslandManager::new(),
broad_phase: BroadPhase::new(),
broad_phase: DefaultBroadPhase::new(),
narrow_phase: NarrowPhase::new(),
impulse_joint_set: ImpulseJointSet::new(),
multibody_joint_set: MultibodyJointSet::new(),
Expand Down

0 comments on commit 73582a9

Please sign in to comment.