We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4164f4a commit 94bbd5aCopy full SHA for 94bbd5a
src/main.rs
@@ -1432,7 +1432,9 @@ async fn main() {
1432
1433
if level_mode == 2 {
1434
for point in &player_trail {
1435
- draw_circle(point.x - world_offset, point.y, 5.0, LIME);
+ if point.x - world_offset > -10.0 {
1436
+ draw_circle(point.x - world_offset, point.y, 5.0, LIME);
1437
+ }
1438
}
1439
1440
0 commit comments