Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darthdeus committed Dec 8, 2023
1 parent 196b682 commit 80f08eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion comfy/examples/perspective-camera.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ fn setup(c: &mut EngineContext) {
for x in -count..count {
for y in -count..count {
commands().spawn((
Transform::position(start_pos + vec2(x as f32, y as f32) + splat(0.5)),
Transform::position(
start_pos + vec2(x as f32, y as f32) + splat(0.5),
),
Sprite::new("player", splat(1.0), 5, BLUE)
.with_z_index(Z_MOBS)
.with_rect(0, 0, 16, 16),
Expand Down

0 comments on commit 80f08eb

Please sign in to comment.