From cc772ec88650330b701d6356a02f25e689cecc60 Mon Sep 17 00:00:00 2001 From: Carter Anderson Date: Wed, 2 Dec 2020 11:37:30 -0800 Subject: [PATCH] Update texture_atlas_builder.rs --- crates/bevy_sprite/src/texture_atlas_builder.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_sprite/src/texture_atlas_builder.rs b/crates/bevy_sprite/src/texture_atlas_builder.rs index 9245e1244f3b96..2be6d0058e04da 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, }