From 7be6b0746fa73626eea0c5401323b7532c69a549 Mon Sep 17 00:00:00 2001 From: yuni Date: Sat, 8 Jun 2024 04:15:16 +0200 Subject: [PATCH] disable ring asteroids by default --- src/world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world.rs b/src/world.rs index 05d6d32..a703844 100644 --- a/src/world.rs +++ b/src/world.rs @@ -19,7 +19,7 @@ use bevy_xpbd_3d::prelude::*; use fastrand; use std::collections::HashMap; -const ENABLE_ASTEROIDS: bool = true; +const ENABLE_ASTEROIDS: bool = false; const ASTEROID_UPDATE_INTERVAL: f32 = 0.1; // seconds const ASTEROID_SIZE_FACTOR: f32 = 10.0; const RING_THICKNESS: f64 = 8.0e6;