pub startpos

This commit is contained in:
2026-09-17 20:16:22 +02:00
parent 18c4db4e95
commit 8b07880e46
3 changed files with 20 additions and 1 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ use crate::collision::{Collider, HasCollided};
const FALL_SPEED: f32 = 300.0; // Falling speed
const DIVE_SPEED: f32 = 700.0; // Falling speed sped up
const HORIZONTAL_SPEED: f32 = 300.0; // Lateral movement speed
const START_POSITION: Vec3 = Vec3::new(0.0, 0.0, 2.0); // Start position
pub const START_POSITION: Vec3 = Vec3::new(0.0, 0.0, 2.0); // Start position
// The player
#[derive(Component)]