Skip to content

Commit b2ef78a

Browse files
committed
line
1 parent 64ff082 commit b2ef78a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,15 @@ fn setup(
243243
Transform::from_xyz(0.0, 0.0, 0.0),
244244
));
245245

246+
commands.spawn((
247+
Mesh2d(meshes.add(CircleMeshBuilder {
248+
circle: Circle::new(CIRCLE_SIZE + 4.0),
249+
resolution: 128,
250+
})),
251+
MeshMaterial2d(materials.add(Color::linear_rgb(0.2, 0.2, 0.2))),
252+
Transform::from_xyz(0.0, 0.0, -1.0),
253+
));
254+
246255
commands.spawn((
247256
ClockMarker,
248257
Mesh2d(meshes.add(Mesh::from(Circle::new(CIRCLE_SIZE / 8.0)))),

0 commit comments

Comments
 (0)