PickSet

Type Alias PickSet 

Source
pub type PickSet = PickingSystems;
👎Deprecated since 0.17.0: Renamed to PickingSystems.
Expand description

Deprecated alias for PickingSystems.

Aliased Type§

pub enum PickSet {
    Input,
    PostInput,
    ProcessInput,
    Backend,
    Hover,
    PostHover,
    Last,
}

Variants§

§

Input

Produces pointer input events. In the First schedule.

§

PostInput

Runs after input events are generated but before commands are flushed. In the First schedule.

§

ProcessInput

Receives and processes pointer input events. In the PreUpdate schedule.

§

Backend

Reads inputs and produces backend::PointerHitss. In the PreUpdate schedule.

§

Hover

Reads backend::PointerHitss, and updates the hovermap, selection, and highlighting states. In the PreUpdate schedule.

§

PostHover

Runs after all the PickingSystems::Hover systems are done, before event listeners are triggered. In the PreUpdate schedule.

§

Last

Runs after all other picking sets. In the PreUpdate schedule.