hey, lets say I have a text like this:
contentT=sf::Text(content,*game->getGuiFont());
contentT.setColor(sf::Color::Black);
contentT.setCharacterSize(16);
contentT.setPosition(xPos-170, yPos-70);
and it has a long piece of text(like ddddddddddddddddiwwwwwwwwwwwwwwwwwwwwwwwwwwwaaaaa) in it, the xPos and yPos are relative to the current object these are in, the whole container width is 349px
How could I now make the contentT, when drawed- do a line wrap at lets say xPos+170 ? and go to the next line at xPos-170 again?