Skip to content

Commit

Permalink
Merge pull request #12 from StarArawn/0.3.0-release
Browse files Browse the repository at this point in the history
0.3.0 Release
  • Loading branch information
StarArawn committed May 6, 2021
2 parents 86472f8 + 0f405f3 commit 81d1bd4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bevy_ecs_tilemap"
description = "A tilemap rendering plugin for bevy which is more ECS friendly by having an entity per tile."
version = "0.2.0"
version = "0.3.0"
authors = ["John Mitchell"]
homepage = "https://github.com/StarArawn/bevy_ecs_tilemap"
repository = "https://github.com/StarArawn/bevy_ecs_tilemap"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A tilemap rendering plugin for bevy which is more ECS friendly by having an enti
- A tile per entity
- Fast rendering using a chunked approach.
- Layers and sparse tile maps.
- Animations
- GPU powered animations
- Isometric and Hexagonal tile maps

## Upcoming Features
Expand Down Expand Up @@ -44,6 +44,7 @@ fn update_damage(
- animation - Basic cpu animation example.
- bench - A stress test of the map rendering system. Takes a while to load.
- dynamic_map - A random map that is only partial filled with tiles that changes every so often.
- game_of_life - A game of life simulator.
- hex_column - A map that is meshed using "pointy" hexagons.
- hex_row - A map that is meshed using flat hexagons.
- iso - An isometric meshed map.
Expand All @@ -52,6 +53,7 @@ fn update_damage(
- random_map - A bench of editing all of the tiles every 100 ms.
- remove_tiles - An example showing how you can remove tiles by using map.remove_tile or by applying the RemoveTile tag component.
- sparse_tiles - An example showing how to generate a map where not all of the tiles exist for a given square in the tile map.
- visibility - An example showcasing visibility of tiles and chunks.

### Running examples
`cargo run --release --example map`
Expand Down

0 comments on commit 81d1bd4

Please sign in to comment.