Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 11, 2005, 4:43:13 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/textEngine: Blending of text enabled

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/textEngine/src/lib/graphics/font/text_engine.cc

    r3776 r3777  
    5656  this->text = NULL;
    5757  this->texture = 0;
     58  this->blending = 1.0f;
    5859  this->setType(type);
    5960  this->setPosition(0, 0);
     
    181182      pos.z = 0;
    182183    }
     184
     185  // setting the Blending effects
     186  glColor4f(1.0f,1.0f,1.0f, this->blending);
     187  glBlendFunc(GL_SRC_ALPHA, GL_ONE);
    183188
    184189  // drawing this Text.
Note: See TracChangeset for help on using the changeset viewer.