Type Alias BroadPhaseSet

Source
pub type BroadPhaseSet = BroadPhaseSystems;
👎Deprecated since 0.4.0: Renamed to BroadPhaseSystems
Expand description

A deprecated alias for BroadPhaseSystems.

Aliased Type§

pub enum BroadPhaseSet {
    First,
    UpdateStructures,
    CollectCollisions,
    Last,
}

Variants§

§

First

Runs at the start of the broad phase. Empty by default.

§

UpdateStructures

Updates acceleration structures and other data needed for broad phase collision detection.

§

CollectCollisions

Finds pairs of entities with overlapping ColliderAabbs and creates contact pairs for them in the ContactGraph.

§

Last

Runs at the end of the broad phase. Empty by default.