lightyear_avian 0.19.1

Helper library to use Lightyear with Avian
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "lag_compensation")]
pub mod lag_compensation;

pub mod prelude {
    #[cfg(feature = "lag_compensation")]
    pub use crate::lag_compensation::{
        history::{
            AabbEnvelopeHolder, LagCompensationConfig, LagCompensationHistory,
            LagCompensationPlugin, LagCompensationSet,
        },
        query::LagCompensationSpatialQuery,
    };
}