gizmo-scene 0.1.7

A custom ECS and physics engine aimed for realistic simulations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Gizmo Scene — Sahne serileştirme ve yönetim sistemi
//!
//! Sahne dosyalarını JSON olarak kaydetme/yükleme yeteneği sağlar.
//! Editor, Lua scripting ve runtime tarafından kullanılır.


pub mod registry;
pub mod scene;
pub mod snapshot;

pub use registry::SceneRegistry;
pub use scene::{EntityData, MaterialData, SceneData};
pub use snapshot::SceneSnapshot;
pub use ron;