todo: flying style w/o gravity (may help point out fly bugs)

This commit is contained in:
Quaternions 2024-07-22 14:55:03 -07:00
parent 582009baed
commit 0215df9f96

View File

@ -14,6 +14,8 @@ pub struct StyleModifiers{
//player gets a controllable rocket force //player gets a controllable rocket force
pub rocket:Option<PropulsionSettings>, pub rocket:Option<PropulsionSettings>,
//flying //flying
//pub move_type:MoveType::Fly(FlySettings)
//MoveType::Physics(PhysicsSettings) -> PhysicsSettings includes gravity
//jumping is allowed //jumping is allowed
pub jump:Option<JumpSettings>, pub jump:Option<JumpSettings>,
//standing & walking is allowed //standing & walking is allowed
@ -520,4 +522,4 @@ impl StyleModifiers{
camera_offset:(Planar64Vec3::int(0,64,0)-Planar64Vec3::int(0,73,0)/2)*VALVE_SCALE, camera_offset:(Planar64Vec3::int(0,64,0)-Planar64Vec3::int(0,73,0)/2)*VALVE_SCALE,
} }
} }
} }