Skip to content

Commit

Permalink
Remove redundant semicolons from script
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderMertens committed Dec 16, 2024
1 parent ae2530a commit 51bc72d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions etc/assets/scene.flecs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ using flecs.components.*

template FencePost {
prop x = f32: 0
Position3: {$x, 1};
Position3: {$x, 1}
Box: {0.5, 2, 0.5}
}

template FenceBoard {
prop width = f32: 10
prop y = f32: 1
Position3: {0, $y};
Position3: {0, $y}
Box: {$width, 0.5, 0.2}
}

Expand Down Expand Up @@ -47,4 +47,4 @@ template Pen {
}
}

Pen my_pen(width: 10, depth: 15)
Pen my_pen(width: 10, depth: 15)
Binary file modified etc/flecs_explorer.wasm
Binary file not shown.

0 comments on commit 51bc72d

Please sign in to comment.