Hi there,
I downloaded this font:
http://www.1001freefonts.com/snacker_comic.font. It is supposed to be white with black outline. But in my project I get this instead:
http://i.imgur.com/iLoo8ko.pngYou see, outline is ok, it is black. But the rest of the font color is transparent and I don't know why. I saw that I have the same problem in Paint - this font just won't work properly.
In my project I have two variables, a font and a text, I load and set them as this:
//there's using namespace sf somewhere up there
Font snacker;
Text example;
snacker.loadFromFile("data/fonts/snacker.ttf");
example.setFont(snacker);
example.setCharacterSize(26);
example.setColor(Color::Black);
example.setStyle(Text::Regular);
example.setPosition(Vector2f(630, 360));
example.setString("Pizza Box");
Is there any chance that this font would work?