Struct bevy_internal::input::prelude::Touches
source · pub struct Touches { /* private fields */ }
Expand description
A collection of Touch
es.
Usage
It is used to create a bevy
resource that stores the data of the touches on a touchscreen
and can be accessed inside of a system.
Updating
The resource is updated inside of the touch_screen_input_system
.
Implementations§
source§impl Touches
impl Touches
sourcepub fn iter(&self) -> impl Iterator<Item = &Touch>
pub fn iter(&self) -> impl Iterator<Item = &Touch>
An iterator visiting every pressed Touch
input in arbitrary order.
sourcepub fn get_pressed(&self, id: u64) -> Option<&Touch>
pub fn get_pressed(&self, id: u64) -> Option<&Touch>
Returns the Touch
input corresponding to the id
if it is being pressed.
sourcepub fn any_just_pressed(&self) -> bool
pub fn any_just_pressed(&self) -> bool
Checks if any touch input was just pressed.
sourcepub fn release_all(&mut self)
pub fn release_all(&mut self)
Registers a release for all currently pressed touch inputs.
sourcepub fn just_pressed(&self, id: u64) -> bool
pub fn just_pressed(&self, id: u64) -> bool
Returns true
if the input corresponding to the id
has just been pressed.
sourcepub fn clear_just_pressed(&mut self, id: u64) -> bool
pub fn clear_just_pressed(&mut self, id: u64) -> bool
Clears the just_pressed
state of the touch input and returns true
if the touch input has just been pressed.
Future calls to Touches::just_pressed
for the given touch input will return false until a new press event occurs.
sourcepub fn iter_just_pressed(&self) -> impl Iterator<Item = &Touch>
pub fn iter_just_pressed(&self) -> impl Iterator<Item = &Touch>
An iterator visiting every just pressed Touch
input in arbitrary order.
sourcepub fn get_released(&self, id: u64) -> Option<&Touch>
pub fn get_released(&self, id: u64) -> Option<&Touch>
Returns the Touch
input corresponding to the id
if it has just been released.
sourcepub fn any_just_released(&self) -> bool
pub fn any_just_released(&self) -> bool
Checks if any touch input was just released.
sourcepub fn just_released(&self, id: u64) -> bool
pub fn just_released(&self, id: u64) -> bool
Returns true
if the input corresponding to the id
has just been released.
sourcepub fn clear_just_released(&mut self, id: u64) -> bool
pub fn clear_just_released(&mut self, id: u64) -> bool
Clears the just_released
state of the touch input and returns true
if the touch input has just been released.
Future calls to Touches::just_released
for the given touch input will return false until a new release event occurs.
sourcepub fn iter_just_released(&self) -> impl Iterator<Item = &Touch>
pub fn iter_just_released(&self) -> impl Iterator<Item = &Touch>
An iterator visiting every just released Touch
input in arbitrary order.
sourcepub fn any_just_canceled(&self) -> bool
pub fn any_just_canceled(&self) -> bool
Checks if any touch input was just canceled.
sourcepub fn just_canceled(&self, id: u64) -> bool
pub fn just_canceled(&self, id: u64) -> bool
Returns true
if the input corresponding to the id
has just been canceled.
sourcepub fn clear_just_canceled(&mut self, id: u64) -> bool
pub fn clear_just_canceled(&mut self, id: u64) -> bool
Clears the just_canceled
state of the touch input and returns true
if the touch input has just been canceled.
Future calls to Touches::just_canceled
for the given touch input will return false until a new cancel event occurs.
sourcepub fn iter_just_canceled(&self) -> impl Iterator<Item = &Touch>
pub fn iter_just_canceled(&self) -> impl Iterator<Item = &Touch>
An iterator visiting every just canceled Touch
input in arbitrary order.
sourcepub fn first_pressed_position(&self) -> Option<Vec2>
pub fn first_pressed_position(&self) -> Option<Vec2>
Retrieves the position of the first currently pressed touch, if any
sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Clears just_pressed
, just_released
, and just_canceled
data for every touch input.
See also Touches::reset_all
for a full reset.
sourcepub fn reset_all(&mut self)
pub fn reset_all(&mut self)
Clears pressed
, just_pressed
, just_released
, and just_canceled
data for every touch input.
See also Touches::clear
for clearing only touches that have just been pressed, released or canceled.
Trait Implementations§
impl Resource for Touches
Auto Trait Implementations§
impl RefUnwindSafe for Touches
impl Send for Touches
impl Sync for Touches
impl Unpin for Touches
impl UnwindSafe for Touches
Blanket Implementations§
source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
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
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Self
using data from the given World
.