Blacksite/crates/editor/src/viewport/mod.rs
Rbanh 02beeb7085
Some checks are pending
CI / Format, lint, test, build (push) Waiting to run
Add brush CSG commands
2026-06-06 06:06:19 -04:00

26 lines
705 B
Rust

//! Viewport chrome, editor camera, selection, gizmos, and render views.
pub mod actor_icons;
pub mod brush_csg;
pub mod brush_edit;
pub mod brush_tool;
pub mod camera;
pub mod gizmos;
mod panel;
pub mod render_view;
pub mod rendering_diagnostics;
pub mod selection;
pub mod selection_outline;
pub mod viewport_mode;
pub mod visualizers;
pub use actor_icons::ActorIconsPlugin;
pub use brush_csg::{
intersect_selected_brushes, merge_selected_brushes, selected_brush_count,
subtract_selected_brushes,
};
pub use brush_edit::{BrushEditMode, BrushEditPlugin, BrushElementSelection};
pub use brush_tool::{BrushToolPlugin, BrushToolState};
pub use panel::*;
pub use viewport_mode::EditorViewportMode;