Module extract_component

Module extract_component 

Source

Structs§

ComponentUniforms
Stores all uniforms of the component type.
DynamicUniformIndex
Stores the index of a uniform inside of ComponentUniforms.
ExtractComponentPlugin
This plugin extracts the components into the “render world”.
UniformComponentPlugin
This plugin prepares the components of the corresponding type for the GPU by transforming them into uniforms.

Traits§

ExtractComponent
Describes how a component gets extracted for rendering.

Derive Macros§

ExtractComponent
Implements ExtractComponent trait for a component. The component must implement [Clone]. The component will be extracted into the render world via cloning. Note that this only enables extraction of the component, it does not execute the extraction. See ExtractComponentPlugin to actually perform the extraction.