pub enum InputManagerSystem {
Tick,
Update,
ReleaseOnDisable,
ManualControl,
}
Expand description
[SystemSet
]s for the crate::systems
used by this crate
Reset
must occur before Update
Variants§
Tick
Advances action timers.
Cleans up the state of the input manager, clearing just_pressed
and just_released`
Update
Collects input data to update the ActionState
ReleaseOnDisable
Release all actions in all ActionState
s if ToggleActions
was added
ManualControl
Manually control the ActionState
Must run after InputManagerSystem::Update
or the action state will be overridden
Trait Implementations§
source§impl Clone for InputManagerSystem
impl Clone for InputManagerSystem
source§fn clone(&self) -> InputManagerSystem
fn clone(&self) -> InputManagerSystem
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InputManagerSystem
impl Debug for InputManagerSystem
source§impl Hash for InputManagerSystem
impl Hash for InputManagerSystem
source§impl PartialEq<InputManagerSystem> for InputManagerSystem
impl PartialEq<InputManagerSystem> for InputManagerSystem
source§fn eq(&self, other: &InputManagerSystem) -> bool
fn eq(&self, other: &InputManagerSystem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SystemSet for InputManagerSystemwhere
Self: 'static + Send + Sync + Clone + Eq + Debug + Hash,
impl SystemSet for InputManagerSystemwhere Self: 'static + Send + Sync + Clone + Eq + Debug + Hash,
impl Eq for InputManagerSystem
impl StructuralEq for InputManagerSystem
impl StructuralPartialEq for InputManagerSystem
Auto Trait Implementations§
impl RefUnwindSafe for InputManagerSystem
impl Send for InputManagerSystem
impl Sync for InputManagerSystem
impl Unpin for InputManagerSystem
impl UnwindSafe for InputManagerSystem
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for Twhere
U: ShaderType,
&'a T: for<'a> Into<U>,
impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
Return the
T
[ShaderType
] for self
. When used in [AsBindGroup
]
derives, it is safe to assume that all images in self
exist.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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<S> IntoSystemSet<()> for Swhere
S: SystemSet,
impl<S> IntoSystemSet<()> for Swhere S: SystemSet,
§fn into_system_set(self) -> <S as IntoSystemSet<()>>::Set
fn into_system_set(self) -> <S as IntoSystemSet<()>>::Set
Converts this instance to its associated [
SystemSet
] type.§impl<S> IntoSystemSetConfig for Swhere
S: SystemSet,
impl<S> IntoSystemSetConfig for Swhere S: SystemSet,
fn into_config(self) -> SystemSetConfig
§fn ambiguous_with<M>(self, set: impl IntoSystemSet<M>) -> SystemSetConfig
fn ambiguous_with<M>(self, set: impl IntoSystemSet<M>) -> SystemSetConfig
Suppress warnings and errors that would result from systems in this set having ambiguities
(conflicting access but indeterminate order) with systems in
set
.§fn ambiguous_with_all(self) -> SystemSetConfig
fn ambiguous_with_all(self) -> SystemSetConfig
Suppress warnings and errors that would result from systems in this set having ambiguities
(conflicting access but indeterminate order) with any other system.
§fn on_startup(self) -> SystemSetConfigs
fn on_startup(self) -> SystemSetConfigs
👎Deprecated since 0.11.0:
app.configure_set(MySet.on_startup())
has been deprecated in favor of app.configure_set(Startup, MySet)
. Please migrate to that API.This used to configure the set in the
CoreSchedule::Startup
schedule.
This was a shorthand for self.in_schedule(CoreSchedule::Startup)
. Read more§fn in_schedule(self, _schedule: impl ScheduleLabel) -> SystemSetConfigs
fn in_schedule(self, _schedule: impl ScheduleLabel) -> SystemSetConfigs
👎Deprecated since 0.11.0:
app.configure_set(MySet.in_schedule(SomeSchedule))
has been deprecated in favor of app.configure_set(SomeSchedule, MySet)
. Please migrate to that API.This used to configure the set in the provided
schedule
. Read more