Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_ui/src/experimental/mod.rs
6599 views
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
15
mod ghost_hierarchy;
16
17
pub use ghost_hierarchy::*;
18
19