Skip to content

Commit

Permalink
Update examples/entities_from_manifests.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
sixfold-origami authored Apr 17, 2024
1 parent 6a3cf6a commit 399f284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/entities_from_manifests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ pub fn spawn_tiles(mut commands: Commands, tile_manifest: Res<TileManifest>) {
commands.spawn(Camera2dBundle::default());

for (i, tile) in tile_manifest.tiles.values().enumerate() {
info!("{:?}", tile);
info!("Spawning tile: {:?}", tile);

// Space out the spawned tiles for demonstration purposes.
let translation = Vec3::X * i as f32 * SCALE * SPACING;
Expand Down

0 comments on commit 399f284

Please sign in to comment.