hotham 0.2.0

A framework for creating incredible standalone VR experiences
Documentation
1
2
3
4
5
6
use crate::resources::PhysicsContext;

// TODO: We may want to adjust this so that the tick time is synced with OpenXR
pub fn physics_step(physics_context: &mut PhysicsContext) {
    physics_context.update();
}