pub struct ArcBallControlBundle<T: BindingTypes> { /* private fields */ }
Expand description
The bundle that creates an arc ball movement system. Note: Will not actually create a moving entity. It will only register the needed resources and systems. The generic parameters A and B are the ones used in InputHandler<A,B>. You might want to add “fly_movement” and “free_rotation” as dependencies of the TransformSystem. Adding this bundle will grab the mouse, hide it and keep it centered.
See the arc_ball_camera
example to see how to use the arc ball camera.
Implementations§
Source§impl<T: BindingTypes> ArcBallControlBundle<T>
impl<T: BindingTypes> ArcBallControlBundle<T>
Trait Implementations§
Source§impl<T: Debug + BindingTypes> Debug for ArcBallControlBundle<T>
impl<T: Debug + BindingTypes> Debug for ArcBallControlBundle<T>
Source§impl<T: BindingTypes> Default for ArcBallControlBundle<T>
impl<T: BindingTypes> Default for ArcBallControlBundle<T>
Source§impl<'a, 'b, T: BindingTypes> SystemBundle<'a, 'b> for ArcBallControlBundle<T>
impl<'a, 'b, T: BindingTypes> SystemBundle<'a, 'b> for ArcBallControlBundle<T>
Auto Trait Implementations§
impl<T> Freeze for ArcBallControlBundle<T>
impl<T> RefUnwindSafe for ArcBallControlBundle<T>where
T: RefUnwindSafe,
impl<T> Send for ArcBallControlBundle<T>
impl<T> Sync for ArcBallControlBundle<T>
impl<T> Unpin for ArcBallControlBundle<T>where
T: Unpin,
impl<T> UnwindSafe for ArcBallControlBundle<T>where
T: UnwindSafe,
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.Source§impl<T> TryDefault for Twhere
T: Default,
impl<T> TryDefault for Twhere
T: Default,
Source§fn try_default() -> Result<T, String>
fn try_default() -> Result<T, String>
Tries to create the default.
Source§fn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls
try_default
and panics on an error case.