SFML community forums

Bindings - other languages => C => Topic started by: Kavex on November 26, 2014, 07:33:04 pm

Title: Text Wrapping after length
Post by: Kavex on November 26, 2014, 07:33:04 pm
I'm trying to display text on the screen which is being pulled from a string. Of course the string is long and I'm looking to wrap it after a length or word count.

Any ideas?

sf::Text text;
text.setFont(font);
text.setCharacterSize(12);
text.setColor(sf::Color::White);
text.setPosition(20, 20);
text.setString(string);
Title: Re: Text Wrapping after length
Post by: Jesper Juhl on November 26, 2014, 07:41:09 pm
Count characters (or width of substring), insert newlines as appropriate.
Title: Re: Text Wrapping after length
Post by: Nexus on November 26, 2014, 08:05:52 pm
Search in the forum, there have been quite a few threads about this.

And please post in the correct subforum, this has nothing to do with the C binding ;)