Make everything 2x smaller

This commit is contained in:
2025-10-19 13:07:28 +01:00
parent 50f5cb4347
commit f8a8edaa46
3 changed files with 30 additions and 36 deletions

View File

@@ -13,9 +13,9 @@
#define MIN_VERTS 5
#define VERT_RANGE (MAX_VERTS - MIN_VERTS)
#define A_JITTER 0.8
#define V_JITTER 0.001
#define V_JITTER 0.0005
#define ROT_JITTER 0.005
#define R_JITTER 0.02
#define R_JITTER 0.01
#define MIN_DIST 0.8
#define REPLACE_MIN 3
@@ -41,10 +41,10 @@ static unsigned count;
static entry_t entries[MAX_ENTITIES];
static float radii[] = {
[ASTEROID_SMALL] = 0.05f,
[ASTEROID_MEDIUM] = 0.1f,
[ASTEROID_LARGE] = 0.2f,
[ASTEROID_HUGE] = 0.4f,
[ASTEROID_SMALL] = 0.025f,
[ASTEROID_MEDIUM] = 0.05f,
[ASTEROID_LARGE] = 0.1f,
[ASTEROID_HUGE] = 0.2f,
};
static void update(unsigned new_entity_id, void *ref)