pub struct FlyControlBundle<T: BindingTypes> { /* private fields */ }
Expand description
The bundle that creates a flying movement system.
Note: Will not actually create a moving entity. It will only register the needed resources and systems.
You might want to add "fly_movement"
and "free_rotation"
as dependencies of the
TransformSystem
in order to apply changes made by these systems in the same frame.
Adding this bundle will grab the mouse, hide it and keep it centered.
§Type parameters
T
: This are the keys theInputHandler
is using for axes and actions. Often, this is aStringBindings
.
§Systems
This bundle adds the following systems:
FlyMovementSystem
FreeRotationSystem
MouseFocusUpdateSystem
CursorHideSystem
Implementations§
Source§impl<T: BindingTypes> FlyControlBundle<T>
impl<T: BindingTypes> FlyControlBundle<T>
Sourcepub fn new(
right_input_axis: Option<T::Axis>,
up_input_axis: Option<T::Axis>,
forward_input_axis: Option<T::Axis>,
) -> Self
pub fn new( right_input_axis: Option<T::Axis>, up_input_axis: Option<T::Axis>, forward_input_axis: Option<T::Axis>, ) -> Self
Builds a new fly control bundle using the provided axes as controls.
Sourcepub fn with_sensitivity(self, x: f32, y: f32) -> Self
pub fn with_sensitivity(self, x: f32, y: f32) -> Self
Alters the mouse sensitivy on this FlyControlBundle
Sourcepub fn with_speed(self, speed: f32) -> Self
pub fn with_speed(self, speed: f32) -> Self
Alters the speed on this FlyControlBundle
.
Trait Implementations§
Source§impl<T: Debug + BindingTypes> Debug for FlyControlBundle<T>
impl<T: Debug + BindingTypes> Debug for FlyControlBundle<T>
Source§impl<'a, 'b, T: BindingTypes> SystemBundle<'a, 'b> for FlyControlBundle<T>
impl<'a, 'b, T: BindingTypes> SystemBundle<'a, 'b> for FlyControlBundle<T>
Auto Trait Implementations§
impl<T> Freeze for FlyControlBundle<T>
impl<T> RefUnwindSafe for FlyControlBundle<T>
impl<T> Send for FlyControlBundle<T>
impl<T> Sync for FlyControlBundle<T>
impl<T> Unpin for FlyControlBundle<T>
impl<T> UnwindSafe for FlyControlBundle<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> SetParameter for T
impl<T> SetParameter for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.