Changeset 9502 in orxonox.OLD for branches/proxy/src
- Timestamp:
- Jul 27, 2006, 12:30:31 PM (19 years ago)
- Location:
- branches/proxy/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/particles/particle_system.cc
r9500 r9502 238 238 PRINTF(4)("Color of %s::%s on timeslice %f is r:%f g:%f b:%f a:%f\n", 239 239 this->getClassCName(), this->getCName(), lifeCycleTime, red, green, blue, alpha); 240 241 this->colorAnim[0].debug();242 240 } 243 241 … … 469 467 ((this->maxCount!=0)?100*this->count/this->maxCount:0)); 470 468 469 470 PRINT(0)(" Coloring sceme: r:"), this->colorAnim[0].debug(); 471 PRINT(0)(" Coloring sceme: g:"), this->colorAnim[1].debug(); 472 PRINT(0)(" Coloring sceme: b:"), this->colorAnim[2].debug(); 473 PRINT(0)(" Coloring sceme: a:"), this->colorAnim[3].debug(); 474 471 475 if (likely(this->deadList != NULL)) 472 476 { -
branches/proxy/src/lib/particles/quick_animation.cc
r9406 r9502 287 287 288 288 for (unsigned int i = 0; i < this->keyFrames.size(); i++) 289 printf("(% f, %f)->", this->keyFrames[i].position, this->keyFrames[i].value);289 printf("(%0.2f, %0.2f)->", this->keyFrames[i].position, this->keyFrames[i].value); 290 290 printf("\n"); 291 291 } -
branches/proxy/src/world_entities/space_ships/turbine_hover.cc
r9500 r9502 236 236 void TurbineHover::setBoostColor(const Color& color) 237 237 { 238 printf("color:: "), color.debug();239 238 this->burstSystem->setColor(0.0, color); 240 239 this->burstSystem->setColor(0.2, color * 0.6); 241 240 this->burstSystem->setColor(0.5, color * .3 + Color(0.5, 0.5, 0.8, 0.3)); 242 241 this->burstSystem->setColor(1.0, 0.8, 0.8, 0.8, 0.0); 242 243 printf(":::::::::::::::::::::::\n"); 244 this->burstSystem->debug(); 243 245 } 244 246
Note: See TracChangeset
for help on using the changeset viewer.