rusting_engine 0.1.44

A high-performance Vulkano-based 3D engine with GPU physics.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod core;
// pub mod effects;
pub mod engine;
pub mod geometry;
pub mod input;
pub mod rendering;
pub mod scene;
pub mod shaders;
#[cfg(test)]
pub mod tests;

pub use core::collisions::CollisionType;
pub use core::{Material, MaterialBuilder, Physics, ShaderType, Transform};
pub use engine::{Engine, PerspectiveCamera};
pub use geometry::Mesh;
pub use rendering::compute_registry::ComputeShaderType;