Skip to content

Commit 51bc72d

Browse files
committed
Remove redundant semicolons from script
1 parent ae2530a commit 51bc72d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

etc/assets/scene.flecs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ using flecs.components.*
88

99
template FencePost {
1010
prop x = f32: 0
11-
Position3: {$x, 1};
11+
Position3: {$x, 1}
1212
Box: {0.5, 2, 0.5}
1313
}
1414

1515
template FenceBoard {
1616
prop width = f32: 10
1717
prop y = f32: 1
18-
Position3: {0, $y};
18+
Position3: {0, $y}
1919
Box: {$width, 0.5, 0.2}
2020
}
2121

@@ -47,4 +47,4 @@ template Pen {
4747
}
4848
}
4949

50-
Pen my_pen(width: 10, depth: 15)
50+
Pen my_pen(width: 10, depth: 15)

etc/flecs_explorer.wasm

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)