Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 9, 2005, 4:41:53 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/particleEngine: particles should get spread evenly if Emitter moves

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/particleEngine/src/lib/graphics/particles/particle_system.cc

    r4125 r4129  
    291291            }
    292292          else
    293             this->particles = new Particle;
     293            {
     294              PRINTF(5)("Generating new Particle\n");
     295              this->particles = new Particle;
     296            }
    294297          this->particles->next = NULL;
    295298        }
     
    304307            }
    305308          else
    306             tmpPart = new Particle;
     309            {
     310              PRINTF(5)("Generating new Particle\n");
     311              tmpPart = new Particle;
     312            }
    307313          tmpPart->next = this->particles;
    308314          this->particles = tmpPart;
Note: See TracChangeset for help on using the changeset viewer.