-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
might use different aseprite plugin later on
- Loading branch information
1 parent
a972df3
commit 78840f8
Showing
7 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule bevy_asepritesheet
added at
3b9d12
Submodule bevy_asset_loader
updated
11 files
Submodule bevy_ecs_tilemap
updated
21 files
+3 −3 | Cargo.toml | |
+12 −2 | README.md | |
+3 −3 | assets/custom_shader.wgsl | |
+9 −0 | examples/animation.rs | |
+0 −3 | examples/helpers/tiled.rs | |
+18 −2 | src/helpers/hex_grid/axial.rs | |
+21 −1 | src/helpers/hex_grid/cube.rs | |
+20 −0 | src/helpers/hex_grid/offset.rs | |
+5 −0 | src/helpers/square_grid/diamond.rs | |
+5 −0 | src/helpers/square_grid/mod.rs | |
+5 −0 | src/helpers/square_grid/staggered.rs | |
+2 −0 | src/lib.rs | |
+35 −1 | src/map/mod.rs | |
+2 −3 | src/render/chunk.rs | |
+2 −1 | src/render/extract.rs | |
+112 −45 | src/render/material.rs | |
+1 −0 | src/render/shaders/tilemap_vertex.wgsl | |
+1 −0 | src/render/shaders/tilemap_vertex_output.wgsl | |
+8 −0 | src/render/texture_array_cache.rs | |
+1 −0 | src/tiles/mod.rs | |
+16 −2 | src/tiles/storage.rs |
Submodule bevy_inspector_egui
updated
19 files
Submodule leafwing_input_manager
updated
7 files
+2 −3 | Cargo.toml | |
+3 −0 | RELEASES.md | |
+22 −14 | src/input_map.rs | |
+12 −8 | src/input_streams.rs | |
+4 −2 | src/lib.rs | |
+30 −2 | src/plugin.rs | |
+6 −6 | src/user_input.rs |