Trait bevy::render::extract_instances::ExtractInstance

pub trait ExtractInstance: Sized + Send + Sync + 'static {
    type QueryData: ReadOnlyQueryData;
    type QueryFilter: QueryFilter;

    // Required method
    fn extract(item: <Self::QueryData as WorldQuery>::Item<'_>) -> Option<Self>;
}
Expand description

Describes how to extract data needed for rendering from a component or components.

Before rendering, any applicable components will be transferred from the main world to the render world in the ExtractSchedule step.

This is essentially the same as ExtractComponent, but higher-performance because it avoids the ECS overhead.

Required Associated Types§

type QueryData: ReadOnlyQueryData

ECS ReadOnlyQueryData to fetch the components to extract.

type QueryFilter: QueryFilter

Filters the entities with additional constraints.

Required Methods§

fn extract(item: <Self::QueryData as WorldQuery>::Item<'_>) -> Option<Self>

Defines how the component is transferred into the “render world”.

Object Safety§

This trait is not object safe.

Implementors§