Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5446 in orxonox.OLD for trunk/src/world_entities


Ignore:
Timestamp:
Oct 29, 2005, 11:55:41 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: removed debug-stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/weapons/test_bullet.cc

    r5445 r5446  
    6464TestBullet::~TestBullet ()
    6565{
    66 // delete this->emitter;
     66  // delete this->emitter;
    6767
    6868  /* this is normaly done by World.cc by deleting the ParticleEngine */
     
    7272      delete TestBullet::explosionParticles;
    7373    TestBullet::explosionParticles = NULL;
    74     printf("-------------------\n");
    7574  }
    7675
     
    8685  {
    8786    ClassList::debug(3, CL_PARTICLE_SYSTEM);
    88     TestBullet::explosionParticles = new ParticleSystem(10000, PARTICLE_SPRITE);
     87    TestBullet::explosionParticles = new ParticleSystem(1000, PARTICLE_SPRITE);
    8988    TestBullet::explosionParticles->setName("TestBulletTrailParticles");
    90     TestBullet::explosionParticles->setLifeSpan(.5);
     89    TestBullet::explosionParticles->setLifeSpan(.5, .3);
    9190    TestBullet::explosionParticles->setRadius(0.0, .5);
    9291    TestBullet::explosionParticles->setRadius(0.5, 2.0);
    93     TestBullet::explosionParticles->setRadius(0.0, 0.0);
     92    TestBullet::explosionParticles->setRadius(1.0, 5.0);
    9493    TestBullet::explosionParticles->setColor(0.0, 1,0,0,.7);
    9594    TestBullet::explosionParticles->setColor(0.5, .8,.8,0,.5);
    96     TestBullet::explosionParticles->setColor(1.0, .5,.5,.5,.0);
    97     printf("::::::::::::::::::::::::::::\n");
     95    TestBullet::explosionParticles->setColor(1.0, .7,.7,.7,.0);
    9896  }
    9997
Note: See TracChangeset for help on using the changeset viewer.