| 77 | } |
| 78 | |
| 79 | void TextRenderer::setColor(const std::string& ID, const Ogre::ColourValue& color) |
| 80 | { |
| 81 | Ogre::OverlayElement* textBox = mOverlayMgr->getOverlayElement(ID); |
| 82 | if (textBox != nullptr) |
| 83 | textBox->setColour(color); |
| 84 | } |
| 85 | |
| 86 | void TextRenderer::moveText(const std::string& ID, Ogre::Real left, Ogre::Real top) |
| 87 | { |
no outgoing calls
no test coverage detected