diff --git a/crates/bevy_sprite/src/texture_atlas_builder.rs b/crates/bevy_sprite/src/texture_atlas_builder.rs index 9245e1244f3b9..2be6d0058e04d 100644 --- a/crates/bevy_sprite/src/texture_atlas_builder.rs +++ b/crates/bevy_sprite/src/texture_atlas_builder.rs @@ -22,9 +22,9 @@ pub struct TextureAtlasBuilder { /// The grouped rects which must be placed with a key value pair of a /// texture handle to an index. rects_to_place: GroupedRectsToPlace>, - /// The sprite size in pixels. + /// The initial atlas size in pixels. initial_size: Vec2, - /// The absolute maximum size of a sprite sheet in pixels. + /// The absolute maximum size of the texture atlas in pixels. max_size: Vec2, }