Hello,
I have problem changing the font of my sf::String. Do I have to put the .tff in the directorie of my project? I tried this code :
sf::String Text("text", "arial.tff", 36.f);
and this one after :
Text.SetFont("arial.tff");
When I compile, Text has the sans serif font. I also tried with other fonts and with some I found on internet. Sans serif again and again.
Can someone tell me what is my problem?