scion 0.6.0

Game making library on top of wgpu, winit, legion
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Contains all the components provided by `Scion`

pub use shapes::{square::Square, triangle::Triangle};

pub mod animations;
pub mod color;
pub mod material;
pub mod maths;
pub mod shapes;
pub mod tiles;
pub mod ui;

/// Struct to add to any entity to 'hide' it during rendering
pub struct Hide;

pub(crate) struct HidePropagated;