Changeset 8510 in orxonox.OLD for branches/gui/src
- Timestamp:
- Jun 16, 2006, 12:31:06 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/gui/gl/specials/glgui_notifier.cc
r8509 r8510 65 65 dl.text = this->hiddenText.top(); 66 66 67 dl.text->setBlending(1.0f); 67 68 dl.text->setText(message); 68 69 this->hiddenText.pop(); … … 127 128 void GLGuiNotifier::tick(float dt) 128 129 { 130 std::list<DisplayLine>::iterator line; 131 for (line = this->displayLines.begin() ; line != this->displayLines.end(); ++line ) 132 { 133 (*line).age+=dt; 134 if ((*line).age > 3.0f) 135 { 136 (*line).text->setBlending(4.0 - (*line).age); 137 if ((*line).age > 4.0f) 138 { 139 std::list<DisplayLine>::iterator tmp = line; 140 ++line; 141 142 this->hiddenText.push((*tmp).text); 143 this->displayLines.erase(tmp); 144 } 145 } 146 } 129 147 } 130 148
Note: See TracChangeset
for help on using the changeset viewer.