amethyst_renderer 0.10.4

High-level rendering engine with multiple backends
1
2
3
4
5
6
7
8
9
10
11
12
pub use gfx::preset::blend::{ALPHA, REPLACE};
pub use gfx_core::state::{Blend, BlendChannel, BlendValue, ColorMask, Equation, Factor};

use amethyst_core::specs::{prelude::Component, storage::NullStorage};

/// Transparent mesh component
#[derive(Clone, Debug, Default)]
pub struct Transparent;

impl Component for Transparent {
    type Storage = NullStorage<Self>;
}