| 676 | } |
| 677 | |
| 678 | ShinyText makeShinyText(const sf::Font& font, const sf::String& string, sf::Vector2f position) |
| 679 | { |
| 680 | ShinyText text(font, string, textSize); |
| 681 | text.setLineSpacing(getSpacingFactor(font)); |
| 682 | text.setOutlineThickness(2.f); |
| 683 | text.setPosition(position); |
| 684 | |
| 685 | return text; |
| 686 | } |
| 687 | |
| 688 | sf::Text makeText(const sf::Font& font, const sf::String& string, sf::Vector2f position) |
| 689 | { |
no test coverage detected