Changeset 8919 in orxonox.OLD for branches/mountain_lake/src/world_entities/environments/mapped_water.cc
- Timestamp:
- Jun 29, 2006, 7:09:59 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mountain_lake/src/world_entities/environments/mapped_water.cc
r8918 r8919 106 106 this->bFadeReflStrength = false; 107 107 this->bFadeRefraction = false; 108 this->bFadeWaterColor = false; 108 109 109 110 this->tempcounter = 0; … … 574 575 this->move2 = this->move * this->kNormalMapScale; 575 576 576 // fading 577 // fading TODO fix this so it isnt hacky anymore 577 578 if(bFadeWaterUV) 578 579 { … … 659 660 } 660 661 661 662 // if(this->tempcounter == 300) 663 // { 664 // PRINTF(0)("\n\n\n\n\n\n///////////////////////test waterchangecolor/////////////////////\n\n\n\n\n\n"); 665 // this->fadeWaterUV(1, 10); 666 // } 662 if(bFadeWaterColor) 663 { 664 this->waterColorRFader = new tAnimation<MappedWater>(this, &MappedWater::resetWaterColorR); 665 this->waterColorRFader->setInfinity(ANIM_INF_CONSTANT); 666 667 this->waterColorRFader->addKeyFrame(this->waterColor.x, this->waterColorFadeTime, ANIM_LINEAR); 668 this->waterColorRFader->addKeyFrame(this->newWaterColor.x, 0, ANIM_LINEAR); 669 670 this->waterColorRFader->replay(); 671 672 this->waterColorGFader = new tAnimation<MappedWater>(this, &MappedWater::resetWaterColorG); 673 this->waterColorGFader->setInfinity(ANIM_INF_CONSTANT); 674 675 this->waterColorGFader->addKeyFrame(this->waterColor.x, this->waterColorFadeTime, ANIM_LINEAR); 676 this->waterColorGFader->addKeyFrame(this->newWaterColor.x, 0, ANIM_LINEAR); 677 678 this->waterColorGFader->replay(); 679 680 this->waterColorBFader = new tAnimation<MappedWater>(this, &MappedWater::resetWaterColorB); 681 this->waterColorBFader->setInfinity(ANIM_INF_CONSTANT); 682 683 this->waterColorBFader->addKeyFrame(this->waterColor.x, this->waterColorFadeTime, ANIM_LINEAR); 684 this->waterColorBFader->addKeyFrame(this->newWaterColor.x, 0, ANIM_LINEAR); 685 686 this->waterColorBFader->replay(); 687 688 bFadeWaterColor = false; 689 } 690 667 691 if(this->tempcounter == 100) 668 692 { 669 693 PRINTF(0)("\n\n\n\n\n\n///////////////////////test waterchangecolor/////////////////////\n\n\n\n\n\n"); 670 this->fadeWater Height(0, 15);694 this->fadeWaterColor(1, 0, 1, 15); 671 695 } 672 696 //PRINTF(0)("counter %i/n", tempcounter);
Note: See TracChangeset
for help on using the changeset viewer.