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
pub mod camera;
pub mod collider;
pub mod coordinates;
pub mod hierarchy;
pub mod transform;

/// `Pivot` tells where the pivot point of a component is
pub enum Pivot {
    /// Pivot is on the top left corner of the shape
    TopLeft,
    /// Pivot is on the center of the shape
    Center,
}