Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10490 in orxonox.OLD


Ignore:
Timestamp:
Jan 30, 2007, 12:52:20 AM (17 years ago)
Author:
stefalie
Message:

blinki: hacky

Location:
branches/blink/src/world_entities/effects
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/blink/src/world_entities/effects/billboard.cc

    r10433 r10490  
    152152  // changes the color of the texture (if any is set)
    153153  if(this->texColor != NULL)
    154     glColor4ub((GLubyte)this->texColor->r()*255, (GLubyte)this->texColor->g()*255, (GLubyte)this->texColor->b()*255, (GLubyte)(this->texColor->a()*255));
     154    glColor4ub((GLubyte)(this->texColor->r()*255.0f), (GLubyte)(this->texColor->g()*255.0f), (GLubyte)(this->texColor->b()*255.0f), (GLubyte)(this->texColor->a()*255));
    155155
    156156  glBegin(GL_QUADS);
  • branches/blink/src/world_entities/effects/blink.cc

    r10474 r10490  
    3838  // calculation of the symbolTime
    3939  this->symbolTime = this->period / this->blinkSequence.length();
     40  //PRINTF(0)("\n\n\nperiod: %f\n\n\n", this->period);
    4041}
    4142
     
    112113    this->bBoard->setAbsCoor(this->getAbsCoor());
    113114    this->setCoor = false;
     115    this->symbolTime = this->period / this->blinkSequence.length();
    114116  }
    115117
Note: See TracChangeset for help on using the changeset viewer.