mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Clarify index order in TextureAtlas::from_grid (#6058)
# Objective Docs on from_grid/from_grid_with_padding aren't clear on indexing order. ## Solution Make the docs better!
This commit is contained in:
parent
527dce9a69
commit
e668b47277
1 changed files with 4 additions and 2 deletions
|
@ -68,7 +68,8 @@ impl TextureAtlas {
|
|||
}
|
||||
|
||||
/// Generate a `TextureAtlas` by splitting a texture into a grid where each
|
||||
/// `tile_size` by `tile_size` grid-cell is one of the textures in the atlas
|
||||
/// `tile_size` by `tile_size` grid-cell is one of the textures in the
|
||||
/// atlas. Resulting `TextureAtlas` is indexed left to right, top to bottom.
|
||||
pub fn from_grid(
|
||||
texture: Handle<Image>,
|
||||
tile_size: Vec2,
|
||||
|
@ -81,7 +82,8 @@ impl TextureAtlas {
|
|||
/// Generate a `TextureAtlas` by splitting a texture into a grid where each
|
||||
/// `tile_size` by `tile_size` grid-cell is one of the textures in the
|
||||
/// atlas. Grid cells are separated by some `padding`, and the grid starts
|
||||
/// at `offset` pixels from the top left corner.
|
||||
/// at `offset` pixels from the top left corner. Resulting `TextureAtlas` is
|
||||
/// indexed left to right, top to bottom.
|
||||
pub fn from_grid_with_padding(
|
||||
texture: Handle<Image>,
|
||||
tile_size: Vec2,
|
||||
|
|
Loading…
Reference in a new issue