gizmo-physics-core 0.1.7

A custom ECS and physics engine aimed for realistic simulations.
Documentation
pub mod collider;
pub mod collision_layer;
pub mod physics_material;
pub mod transform;
pub mod fluid;
pub mod character;
pub mod fighter;
pub mod hitbox;

pub use collider::{BoxShape, CapsuleShape, Collider, ColliderShape, ConvexHullShape, PlaneShape, SphereShape, TriMeshShape};
pub use collision_layer::CollisionLayer;
pub use physics_material::PhysicsMaterial;
pub use transform::{GlobalTransform, Transform};
pub use fluid::FluidSimulation;
pub use character::CharacterController;
pub use fighter::FighterController;
pub use hitbox::{Hitbox, Hurtbox};
pub mod gpu_physics_link;
pub use gpu_physics_link::GpuPhysicsLink;