A [Bevy] plugin for loading [LDtk] 2D tile maps.
( Screenshot assets from the CanariPack 8BIT TopDown art pack by Johan Vinet )
```rust use bevy::prelude::; use bevy_ldtk::;
fn main() { App::build() .addplugins(DefaultPlugins) .addplugin(LdtkPlugin) .addstartupsystem(setup.system()) .run(); }
fn setup(commands: &mut Commands, assetserver: Res
Each layer in the loaded level is laid out in a quad one unit further away from the camera than the one before. This should allow you to put your character, etc. in the space between the layers to have some layers show in front of the character and the others show behind.
bash
cargo run --example display_map
You can also copy your own LDtk maps into the assets folder and then run them by specifying the map file name and the level. For instance, this will load the second level from map2.ldtk
:
bash
cargo run --example display_map -- map2.ldtk 1
| Bevy Version | Plugin Version |
| ------------ | ---------------------------------------------- |
| 0.4 | 0.2 |
| master | with the bevy-unstable
feature ( see below ) |
You can use this crate with Bevy master by adding a patch to your Cargo.toml
and by adding the bevy-unstable
feature to this crate:
```toml [dependencies]
bevy = "0.4" bevy_ldtk = { version = "0.2", features = ["bevy-unstable"] }
[patch.crates-io] bevy = { git = "https://github.com/bevyengine/bevy.git" } ```
Note that as Bevy master may or may not introduce breaking API changes, this crate may or may not compile when using the bevy-unstable
feature.
This plugin is in relatively early stages of development, and while it can load many basic maps, there are some caveats:
If you run into anything that isn't supported that you want to use in your game open an issue or PR to help prioritize what gets implemented.
Bevy LDtk is licensed under the Katharos License which places certain restrictions on what you are allowed to use it for. Please read and understand the terms before using Bevy LDtk for your project.