Compare commits
1 Commits
master
...
run-timer-
Author | SHA1 | Date | |
---|---|---|---|
ed69cf2297 |
@ -102,6 +102,7 @@ pub struct FrameState{
|
||||
pub body:crate::physics::Body,
|
||||
pub camera:crate::physics::PhysicsCamera,
|
||||
pub time:integer::Time,
|
||||
pub run:strafesnet_common::run::Run,
|
||||
}
|
||||
|
||||
pub struct GraphicsState{
|
||||
|
@ -1046,6 +1046,9 @@ impl PhysicsContext{
|
||||
pub const fn get_next_mouse(&self)->&MouseState{
|
||||
self.state.input_state.get_next_mouse()
|
||||
}
|
||||
pub const fn run(&self)->run::Run{
|
||||
self.state.run
|
||||
}
|
||||
/// use with caution, this is the only non-instruction way to mess with physics
|
||||
pub fn generate_models(&mut self,map:&map::CompleteMap){
|
||||
self.state.clear();
|
||||
|
@ -184,6 +184,7 @@ impl MouseInterpolator{
|
||||
crate::graphics::FrameState{
|
||||
body:self.physics.camera_body(),
|
||||
camera:self.physics.camera(),
|
||||
run:self.physics.run(),
|
||||
time:self.timer.time(time),
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user