rusting_engine 0.1.47

A high-performance Vulkano-based 3D engine with GPU physics.
1
2
3
4
5
6
7
8
9
10
pub mod collisions;
pub mod material;
pub mod physics;
pub mod transform;

pub use crate::rendering::compute_registry::ComputeShaderType;
pub use crate::rendering::shader_registry::ShaderType;
pub use material::{Material, MaterialBuilder};
pub use physics::Physics;
pub use transform::Transform;