bevy_tmx

Documentation Crates.io License

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

Todo

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.

Example

```rust use bevy::prelude::*; use bevy::window::WindowMode;

use bevy_tmx::TmxPlugin;

struct PlayerComponent;

fn main() { App::build() .insertresource(WindowDescriptor { title: "Ortho".tostring(), width: 1024., height: 720., vsync: false, resizable: true, mode: WindowMode::Windowed, ..Default::default() }) .addplugins(DefaultPlugins) .addplugin(TmxPlugin::default() // Note that in tiled, the y axis points down, but in bevy it points up. The default scale is (1.0, -1.0). .scale(Vec2::new(3.0, -3.0)) // This is the place to add more functionality to your objects .visitobjects(|object, entity| { if object.ty == "player" { entity.insert(PlayerComponent); } }) ) .addstartupsystem(spawnscene.system()) .run() }

fn spawnscene(mut commands: Commands, assetserver: Res) { commands.spawnscene(assetserver.load("ortho-map.tmx")); commands.spawn().insertbundle(OrthographicCameraBundle { transform: Transform::fromxyz(600.0, -600.0, 50.0), ..OrthographicCameraBundle::new_2d() }); } ```