From 3d5566e48edad6b44606810077366a54f5c2a4de Mon Sep 17 00:00:00 2001 From: epoch Date: Tue, 21 Apr 2020 20:35:47 -0500 Subject: temporarily commented out physics stuff --- src/physics.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/physics.c') diff --git a/src/physics.c b/src/physics.c index ac75286..2818587 100644 --- a/src/physics.c +++ b/src/physics.c @@ -17,8 +17,9 @@ foward/backward, left/right, up/down, x, y, z rotation-relative-x,rry,rrz */ int apply_physics() { - int i; + //int i; //we can just assume things will float if they don't have a group_rot + /* for(i=0;global.group_rot[i] && i < MAXSHAPES;i++) {//this should be applied to group_rots if(!strcmp(global.group_rot[i]->id,global.user)) {//only apply gravity to the camera. global.group_rot[i]->v.y += (GRAVITY / (float)(global.lps?global.lps:1)); //heh. "fps" needs a headless equivalent now. @@ -28,6 +29,7 @@ int apply_physics() { global.group_rot[i]->p.y=MINIMUM_Y; } } - } + }*/ + //lol. not right now. return 1; } -- cgit v1.2.3