disable ring asteroids by default

This commit is contained in:
yuni 2024-06-08 04:15:16 +02:00
parent 974bf9cb8d
commit 7be6b0746f

View file

@ -19,7 +19,7 @@ use bevy_xpbd_3d::prelude::*;
use fastrand; use fastrand;
use std::collections::HashMap; use std::collections::HashMap;
const ENABLE_ASTEROIDS: bool = true; const ENABLE_ASTEROIDS: bool = false;
const ASTEROID_UPDATE_INTERVAL: f32 = 0.1; // seconds const ASTEROID_UPDATE_INTERVAL: f32 = 0.1; // seconds
const ASTEROID_SIZE_FACTOR: f32 = 10.0; const ASTEROID_SIZE_FACTOR: f32 = 10.0;
const RING_THICKNESS: f64 = 8.0e6; const RING_THICKNESS: f64 = 8.0e6;