| 49 | } |
| 50 | |
| 51 | std::shared_ptr<Font> TextComponent::getFont() const |
| 52 | { |
| 53 | if(mFont) |
| 54 | return mFont; |
| 55 | else |
| 56 | return Font::get(*mWindow->getResourceManager(), Font::getDefaultPath(), FONT_SIZE_MEDIUM); |
| 57 | } |
| 58 | |
| 59 | void TextComponent::render(const Eigen::Affine3f& parentTrans) |
| 60 | { |
nothing calls this directly
no test coverage detected