Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 28, 2005, 12:05:46 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: now Textures are maped as they should
before this textures where switched upside-down, now this is done in the corresponding model's textureCoordinate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/subprojects/particles/particle_fun.cc

    r4356 r4357  
    100100        {
    101101          tmpEmit->setEmissionRate(atof(value));
    102           PRINT(3)("EmissionRate set to %f\n", atof(value));
     102          PRINT(4)("EmissionRate set to %f\n", atof(value));
    103103        }
    104104      else if (!strcmp(name, "Velocity"))
    105105        {
    106106          tmpEmit->setEmissionVelocity(atof(value));
    107           PRINT(3)("Velocity set to %f\n", atof(value));
     107          PRINT(4)("Velocity set to %f\n", atof(value));
    108108        }
    109109      else if(!strcmp(name, "SpreadAngle"))
    110110        {
    111111          tmpEmit->setSpread(atof(value));
    112           PRINT(3)("SpreadAngle set to %f\n", atof(value));
     112          PRINT(4)("SpreadAngle set to %f\n", atof(value));
    113113        }
    114114      else if(!strcmp(name, "EmitterType"))
     
    120120          else if (!strcmp(value, "EMITTER_CUBE"))
    121121            tmpEmit->setType(EMITTER_CUBE);
    122           PRINT(3)("EmitterType set to %s\n", value);
     122          PRINT(4)("EmitterType set to %s\n", value);
    123123        }
    124124      else if(!strcmp(name, "EmitterSize"))
    125125        {
    126126          tmpEmit->setSize(atof(value));
    127           PRINT(3)("EmitterSize set to %f\n", atof(value));
     127          PRINT(4)("EmitterSize set to %f\n", atof(value));
    128128        }
    129129    }
     
    144144        {
    145145          tmpSys->setRadius(atof(value), tmpSys->getEndRadius());
    146           PRINT(3)("ParticleStartRadius set to %f\n", atof(value));
     146          PRINT(4)("ParticleStartRadius set to %f\n", atof(value));
    147147        }
    148148      else if (!strcmp(name, "EndRadius"))
    149149        {
    150150          tmpSys->setRadius( tmpSys->getStartRadius(), atof(value));
    151           PRINT(3)("ParticleEndRadius set to %f\n", atof(value));
     151          PRINT(4)("ParticleEndRadius set to %f\n", atof(value));
    152152        }
    153153
     
    155155        {
    156156          tmpSys->setLifeSpan(atof(value));
    157           PRINT(3)("ParticleLifeSpan set to %f\n", atof(value));
     157          PRINT(4)("ParticleLifeSpan set to %f\n", atof(value));
    158158        }
    159159
     
    161161        {
    162162          tmpSys->setConserve(atof(value));
    163           PRINT(3)("ParticleConserveFactor set to %f\n", atof(value));
     163          PRINT(4)("ParticleConserveFactor set to %f\n", atof(value));
    164164        }
    165165
     
    173173            tmpSys->setType(PARTICLE_SPRITE);
    174174
    175           PRINT(3)("ParticleType set to %s\n", value);
     175          PRINT(4)("ParticleType set to %s\n", value);
    176176        }
    177177
     
    179179        {
    180180          tmpSys->setInheritSpeed(atof(value));
    181           PRINT(3)("ParticleInheritSpeed set to %f\n", atof(value));
     181          PRINT(4)("ParticleInheritSpeed set to %f\n", atof(value));
    182182        }
    183183      else if (!strcmp(name, "RandomColor"))
Note: See TracChangeset for help on using the changeset viewer.