refactor examples

This commit is contained in:
Jérôme Bousquié
2026-09-25 10:19:24 +02:00
parent ab3f056dbb
commit 35aeb769a8
37 changed files with 3430 additions and 457 deletions
+11 -1
View File
@@ -15,7 +15,17 @@
// Core types
pub use crate::core::geometry::{BBox, Geometry};
pub use crate::core::transform::Transform;
pub use crate::core::{ShadowConfig, ToneMapper};
pub use crate::core::{BloomConfig, ShadowConfig, ToneMapper};
pub use crate::resources::Material;
// Camera
pub use crate::camera::{Camera, CameraController};
// Lights
pub use crate::lights::{directional_light, point_light, spot_light, Light, LightType, Lights};
// Input
pub use crate::input::InputState;
// App / handler (already at crate root, re-exported here for convenience)
pub use crate::app::AppBuilder;