Trait input::controller::ControllerAxisEvent [] [src]

pub trait ControllerAxisEvent: Sized {
    fn from_controller_axis_args(args: ControllerAxisArgs,
                                 old_event: &Self)
                                 -> Option<Self>; fn controller_axis<U, F>(&self, f: F) -> Option<U> where F: FnMut(ControllerAxisArgs) -> U; fn controller_axis_args(&self) -> Option<ControllerAxisArgs> { ... } }

The position of a controller axis changed.

Required Methods

Creates a controller axis event.

Calls closure if this is a controller axis event.

Provided Methods

Returns controller axis arguments.

Implementors