From 1c373d7864ee3d3e86f48e060760ac3de020ba4d Mon Sep 17 00:00:00 2001 From: kotorifan Date: Wed, 22 Apr 2026 09:36:40 +0200 Subject: Gravity works now --- src/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 75042da..af9bf06 100644 --- a/src/main.c +++ b/src/main.c @@ -26,8 +26,8 @@ int main(void) .grabbed = true, .pos_prev = {0}, .registered = true, - .size_x = 40, - .size_y = 40, + .size_x = 75, + .size_y = 75, .vel = {200, 200}, .pos = { GetScreenWidth()/2.0f, GetScreenHeight()/2.0f }, .obj_type = RANDOM_SHAPE() @@ -90,8 +90,8 @@ int main(void) .grabbed = false, .registered = true, .mass = GetRandomValue(3, 100), // will be done later - .size_x = GetRandomValue(3, 20), //everything smaller than 3 would be too small - .size_y = GetRandomValue(3, 20), + .size_x = GetRandomValue(50, 100), //everything smaller than 3 would be too small + .size_y = GetRandomValue(50, 100), .obj_type = RANDOM_SHAPE() }; } -- cgit v1.3