rusting_engine 1.0.0

Vulkan 3D game engine with GPU-accelerated physics for massive physics-heavy scenes
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;