Skip to content

Commit

Permalink
Merge pull request #166 from janhohenheim/collider-size
Browse files Browse the repository at this point in the history


Former-commit-id: 93865f5
  • Loading branch information
janhohenheim authored Feb 18, 2023
2 parents 7931a39 + 0901370 commit 12358e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/level_instantiation/spawning/objects/npc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use bevy::prelude::*;
use bevy_rapier3d::prelude::*;
use std::f32::consts::TAU;

pub const HEIGHT: f32 = 1.;
pub const HEIGHT: f32 = 0.4;
pub const RADIUS: f32 = 0.4;

pub struct NpcSpawner;
Expand Down
4 changes: 2 additions & 2 deletions src/level_instantiation/spawning/objects/player.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ use bevy::prelude::*;
use bevy_rapier3d::prelude::*;
use std::f32::consts::TAU;

pub const HEIGHT: f32 = 1.;
pub const RADIUS: f32 = 0.4;
pub const HEIGHT: f32 = 0.4;
pub const RADIUS: f32 = 0.3;

pub struct PlayerSpawner;

Expand Down

0 comments on commit 12358e0

Please sign in to comment.