Crate bevy_tiles

Source
Expand description

A general purpose grided entity library meant to support tilemap libraries, or other libraries that require accessing entities in a grid based manner.

The goal is to keep the API surface as simple and intuitive as possible, and to avoid deferred operations/states where possible to make the structures more intuitive work with. (ex: an update in one system should be seen by the following system, not the following frame.)

Modules§

chunks
Provides chunk level utilities.
commands
Provides commands for interacting with tilemaps.
coords
Provides helper functions for interacting with coordiantes.
maps
Provides map level utilities.
tiles
Provides tile level utilities.
tiles_2d
Helper aliases for working with 2d grids
tiles_3d
Helper aliases for working with 2d grids

Structs§

TilesPlugin
Adds Tiles dependencies to the App.