From 7a5b82c23d4185ef1cc907ed438be664d91765ad Mon Sep 17 00:00:00 2001 From: marcomeijer Date: Sun, 8 Sep 2024 16:39:06 +0200 Subject: [PATCH] fix: documentation TextureAtlas location --- crates/bevy_ui/src/ui_node.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_ui/src/ui_node.rs b/crates/bevy_ui/src/ui_node.rs index f9bb6e5bf8ac7..f43c45bf6c9d5 100644 --- a/crates/bevy_ui/src/ui_node.rs +++ b/crates/bevy_ui/src/ui_node.rs @@ -1838,9 +1838,9 @@ pub struct UiImage { /// Whether the image should be flipped along its y-axis pub flip_y: bool, /// An optional rectangle representing the region of the image to render, instead of rendering - /// the full image. This is an easy one-off alternative to using a [`TextureAtlas`](crate::TextureAtlas). + /// the full image. This is an easy one-off alternative to using a [`TextureAtlas`](bevy_sprite::TextureAtlas). /// - /// When used with a [`TextureAtlas`](crate::TextureAtlas), the rect + /// When used with a [`TextureAtlas`](bevy_sprite::TextureAtlas), the rect /// is offset by the atlas's minimal (top-left) corner position. pub rect: Option, }