moltrun 1.7.2

High-performance game engine library with AI capabilities, built on wgpu for modern 3D graphics and physics simulation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod world;
pub mod scheduler;
pub mod asset;
pub mod scene;
pub mod engine;
pub mod input;
pub mod camera;

pub use world::World;
pub use scheduler::SystemScheduler;
pub use asset::{AssetError, AssetResult, AssetManager};
pub use engine::Engine;
pub use crate::core::InputState;
pub use input::InputManager;
pub use camera::Camera;