Hello,
I was wondering if there is a way in SFML to control the spacing between lines in
sf::Text. I have a text object that spans over multiple lines. It's created like this:
std::stringstream stream;
for(int i = 0; i < 10; i++)
{
stream << "Some Text " << i << std::endl;
}
m_Text.setString(stream.str());
I saw that there is a
getLineSpacing() function in
sf::Font, but I'm not quiet sure if that's the thing I'm looking for, since it's not in
sf::Text. So I was wondering is there any way I can control the spacing between lines in
sf::Text? And if not is it possible to add such an option?