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

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

Required Associated Types§

Required Methods§

Implementors§