Trait heron::rapier_plugin::rapier::pipeline::EventHandler[]

pub trait EventHandler: Send + Sync {
    pub fn handle_intersection_event(&self, event: IntersectionEvent);
pub fn handle_contact_event(&self, event: ContactEvent); }

Trait implemented by structures responsible for handling events generated by the physics engine.

Implementors of this trait will typically collect these events for future processing.

Required methods

pub fn handle_intersection_event(&self, event: IntersectionEvent)

Handle an intersection event.

A intersection event is emitted when the state of intersection between two colliders changes.

pub fn handle_contact_event(&self, event: ContactEvent)

Handle a contact event.

A contact event is emitted when two collider start or stop touching, independently from the number of contact points involved.

Loading content...

Implementations on Foreign Types

impl EventHandler for ()

Loading content...

Implementors

Loading content...