pub trait EntityRenderCommand {
    type Param: SystemParam + 'static;

    fn render<'w>(
        view: Entity,
        item: Entity,
        param: SystemParamItem<'w, '_, Self::Param>,
        pass: &mut TrackedRenderPass<'w>
    ) -> RenderCommandResult; }

Required Associated Types

Required Methods

Implementors