Enum amethyst_renderer::CameraPrefab[][src]

pub enum CameraPrefab {
    Orthographic(Ortho<f32>),
    Perspective(PerspectiveFov<f32>),
    Matrix(Matrix4<f32>),
}

Projection prefab

Variants

Projection matrix

Trait Implementations

impl Clone for CameraPrefab
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CameraPrefab
[src]

Formats the value using the given formatter. Read more

impl<'a> PrefabData<'a> for CameraPrefab
[src]

SystemData needed to perform the load

The result type returned by the load operation

Load the data for this prefab onto the given Entity Read more

Trigger asset loading for any sub assets. Read more

Auto Trait Implementations