bevy_utilitarian 0.9.0

A collection of mostly maths, interpolation and geometric utilities that aim to make Bevy programmers happier
Documentation
1
2
3
4
5
6
7
use std::time::Duration;

pub trait TickInterpolator<T> {
    fn tick(&mut self, dt: Duration);
    fn set_target(&mut self, target: T);
    fn get(&self) -> T;
}