Trait three::controls::Delta

source ·
pub trait Delta {
    type Output;

    fn delta(&self, input: &Input) -> Self::Output;
    fn timed(&self, input: &Input) -> Option<f32>;
}
Expand description

Trait for axis::Key and axis::Raw.

Required Associated Types

Output type.

Required Methods

Implementors