Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3755 in orxonox.OLD for orxonox/trunk/src/simple_animation.cc


Ignore:
Timestamp:
Apr 8, 2005, 12:46:33 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: now got two weapons firing syncronized

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/simple_animation.cc

    r3752 r3755  
    128128      anim->frames = new tList<KeyFrame>();
    129129      anim->animMode = LOOP;
    130       bRunning = false;
     130      anim->bRunning = false;
    131131      deltaT = 0.0;
    132132      this->animators->add(anim);
     
    189189void SimpleAnimation::addKeyFrame(KeyFrame* frame)
    190190{
    191   printf("SimpleAnimation::addKeyFrame() - adding frame\n");
    192191  if( !this->bDescriptive || this->workingAnimator == NULL)
    193192    {
     
    197196  frame->object = this->workingAnimator->object;
    198197  this->workingAnimator->frames->add(frame);
    199   printf("SimpleAnimation::addKeyFrame() - addition completed\n");
    200198}
    201199
     
    322320          while( anim->localTime > anim->currentFrame->time)
    323321            {
    324               printf("SimpleAnimation::tick(...) - changing Frame\n");
     322              PRINTF(4)("SimpleAnimation::tick(...) - changing Frame\n");
    325323             
    326324              anim->localTime -= anim->currentFrame->time;
Note: See TracChangeset for help on using the changeset viewer.