Expand description
§bevy_tmx
bevy_tmx is a plugin for the bevy game engine that allows you to read .tmx files from the tiled map editor as scenes. The plugin can be configured so that you can add more of your own components to the entities of the scene.
Currently, the tile maps being rendered are fairly simple, they are loaded as simple sprite entities, one per layer and sprite sheet.
§Features
- All tile layout modes supported by tiled:
- Orthogonal
- Isometric staggered and non-staggered
- Hexagonal staggered
- Object layers with support for custom object processing
- Image layers with support for custom image layer processing
- Parallax rendering
§Todo
- Infinite map support
- All render orders other than
RightDown
§Overview
Using bevy_tmx is supposed to be really simple, just add the TmxPlugin
to your App
and load a scene.
If you need to add custom functionality to the entities loaded from the .tmx
file, you can customize the TmxLoader
to do so during load time.
Modules§
- Component and system for parallax rendering
- Representation of the .tmx file format
Structs§
- Plugin that adds support for .tmx asset loading. Loading behaviour can be customized on creation.