lol idk #1

Open
Quaternions wants to merge 99 commits from StrafesNET/strafe-client:master into master
Showing only changes of commit 40ed173b60 - Show all commits

View File

@ -922,7 +922,7 @@ impl VirtualBody<'_>{
pub struct PhysicsState{
time:Time,
body:Body,
world:WorldState,//currently there is only one state the world can be in
_world:WorldState,//currently there is only one state the world can be in
touching:TouchingState,
//camera must exist in state because wormholes modify the camera, also camera punch
camera:PhysicsCamera,
@ -959,7 +959,7 @@ impl Default for PhysicsState{
move_state:MoveState::Air,
camera:PhysicsCamera::default(),
input_state:InputState::default(),
world:WorldState{},
_world:WorldState{},
mode_state:ModeState::default(),
run:run::Run::new(),
}