pub struct TnuaSimpleFallThroughPlatformsHelper { /* private fields */ }
Expand description
Helper component for implementing fall-through platforms.
See https://github.com/idanarye/bevy-tnua/wiki/Jump-fall-Through-Platforms
Place this component on the characetr entity (the one that has the TnuaProximitySensor
and
the TnuaGhostSensor
) and inside a system that runs in
TnuaUserControlsSystemSet
(typically the player controls
system) use with
and call one of the methods of the returned handle
object every frame. See the description of
these methods to determine which one to call.
Implementations§
Source§impl TnuaSimpleFallThroughPlatformsHelper
impl TnuaSimpleFallThroughPlatformsHelper
Sourcepub fn with<'a>(
&'a mut self,
proximity_sensor: &'a mut TnuaProximitySensor,
ghost_sensor: &'a TnuaGhostSensor,
min_proximity: Float,
) -> TnuaHandleForSimpleFallThroughPlatformsHelper<'a>
pub fn with<'a>( &'a mut self, proximity_sensor: &'a mut TnuaProximitySensor, ghost_sensor: &'a TnuaGhostSensor, min_proximity: Float, ) -> TnuaHandleForSimpleFallThroughPlatformsHelper<'a>
Get an handle for operating the helper.
The min_proximity
argument is the minimal distance from the origin of the cast ray/shape
(usually the center of the character) to the platform. If the distance to the platform is
below that, the helper will assume that the character only jumped halfway through it, not
high enough to stand on it.
Trait Implementations§
Source§impl Component for TnuaSimpleFallThroughPlatformsHelper
impl Component for TnuaSimpleFallThroughPlatformsHelper
Source§const STORAGE_TYPE: StorageType = bevy::ecs::component::StorageType::Table
const STORAGE_TYPE: StorageType = bevy::ecs::component::StorageType::Table
Source§fn register_required_components(
requiree: ComponentId,
components: &mut Components,
storages: &mut Storages,
required_components: &mut RequiredComponents,
inheritance_depth: u16,
)
fn register_required_components( requiree: ComponentId, components: &mut Components, storages: &mut Storages, required_components: &mut RequiredComponents, inheritance_depth: u16, )
Source§fn register_component_hooks(hooks: &mut ComponentHooks)
fn register_component_hooks(hooks: &mut ComponentHooks)
ComponentHooks
.Source§impl Default for TnuaSimpleFallThroughPlatformsHelper
impl Default for TnuaSimpleFallThroughPlatformsHelper
Source§fn default() -> TnuaSimpleFallThroughPlatformsHelper
fn default() -> TnuaSimpleFallThroughPlatformsHelper
Auto Trait Implementations§
impl Freeze for TnuaSimpleFallThroughPlatformsHelper
impl RefUnwindSafe for TnuaSimpleFallThroughPlatformsHelper
impl Send for TnuaSimpleFallThroughPlatformsHelper
impl Sync for TnuaSimpleFallThroughPlatformsHelper
impl Unpin for TnuaSimpleFallThroughPlatformsHelper
impl UnwindSafe for TnuaSimpleFallThroughPlatformsHelper
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<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> 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<C> Bundle for Cwhere
C: Component,
impl<C> Bundle for Cwhere
C: Component,
fn component_ids( components: &mut Components, storages: &mut Storages, ids: &mut impl FnMut(ComponentId), )
unsafe fn from_components<T, F>(ctx: &mut T, func: &mut F) -> C
Source§fn register_required_components(
components: &mut Components,
storages: &mut Storages,
required_components: &mut RequiredComponents,
)
fn register_required_components( components: &mut Components, storages: &mut Storages, required_components: &mut RequiredComponents, )
Bundle
.Source§fn get_component_ids(
components: &Components,
ids: &mut impl FnMut(Option<ComponentId>),
)
fn get_component_ids( components: &Components, ids: &mut impl FnMut(Option<ComponentId>), )
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<C> DynamicBundle for Cwhere
C: Component,
impl<C> DynamicBundle for Cwhere
C: Component,
fn get_components(self, func: &mut impl FnMut(StorageType, OwningPtr<'_>))
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
Creates Self
using default()
.
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>
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>
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>
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 more