Skip to main content

symtropy_core/
lib.rs

1// Copyright (C) 2024-2026 Tristan Stoltz / Luminous Dynamics
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3
4//! # symtropy-core
5//!
6//! The permissive Symtropy distribution: core Bevy physics bundle without AGPL dependencies.
7
8pub use symtropy_bevy_core as bevy_physics;
9pub use symtropy_bevy_scene as scene;
10pub use symtropy_devconsole as devconsole;
11pub use symtropy_math as math;
12pub use symtropy_physics as physics;
13
14pub mod prelude {
15    pub use crate::bevy_physics::{BevyPhysicsPlugin, NoCouplingResource, PhysicsBody};
16    pub use crate::math::Point;
17    pub use crate::physics::body::BodyHandle;
18    pub use crate::physics::world::PhysicsWorld;
19}