Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
hawkwind

Revenants homing puffs

Recommended Posts

Could someone please direct me to where in the doom source the states/frames for the revenants homing puffs are ?

 

 

Share this post


Link to post

see `A_Tracer()` function, the first code lines (i looked at Chocolate Doom, but the original source should be the same):

    if (gametic & 3)
	return;
    
    // spawn a puff of smoke behind the rocket		
    P_SpawnPuff (actor->x, actor->y, actor->z);

 

Share this post


Link to post

ah, sorry. programmer's deformation, i guess: always answer with the code. ;-)

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×