bevy_ui/experimental/
mod.rs

1//! Experimental features are not yet stable and may change or be removed in the future.
2//!
3//! These features are not recommended for production use, but are available to ease experimentation
4//! within Bevy's ecosystem. Please let us know how you are using these features and what you would
5//! like to see improved!
6//!
7//! These may be feature-flagged: check the `Cargo.toml` for `bevy_ui` to see what options
8//! are available.
9//!
10//! # Warning
11//!
12//! Be careful when using these features, especially in concert with third-party crates,
13//! as they may not be fully supported, functional or stable.
14
15mod ghost_hierarchy;
16
17pub use ghost_hierarchy::*;