Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/bevy_ui/src/ui_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ impl ComputedNode {
/// The order of the node in the UI layout.
/// Nodes with a higher stack index are drawn on top of and receive interactions before nodes with lower stack indices.
///
/// Automatically calculated by [`super::layout::ui_layout_system`].
/// Automatically calculated in [`UiSystems::Stack`](super::UiSystems::Stack).
pub const fn stack_index(&self) -> u32 {
self.stack_index
}
Expand Down
Loading