Jump to content

Home

What is the falling of projectiles governed by?


sroerick

Recommended Posts

  • 1 month later...

Gravity.

 

Seriously - there's a gravity cvar that is set by default to 800, so if you change it, you can change the trajectory of it. This would affect other weapons as well and projectiles such as the grenades etc.

 

My 1st post in the coding forum - hope it helps someone:)

Link to comment
Share on other sites

Yes, but changing the cvar affects everything.

 

The code for the behavior of this projectile is in g_weapon.c, the function is "static void WP_RepeaterAltFire( gentity_t *ent )", it's at line 1074.

 

To make it descend slower, just alter the line:

missile->s.pos.trDelta[2] += 40.0f; //give a slight boost in the upward direction

as you see fit. What i'd do is make a server side cvar, tie it to missile->s.pos.trDelta[2] and then play with the setting to get it where you want it.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...