Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Sade_129

Pages: [1]
1
Graphics / Ugly font output
« on: October 05, 2007, 03:16:11 am »
Look the font that comes with the pong example: cheeseburger. It works nice for me.

2
Graphics / Ugly font output
« on: September 30, 2007, 05:15:07 pm »
Thanks for the reply Laurent. I made a few tests with others fonts and works fine. I test scaling, resizing the window, and no more ugly output :D. It seems that the problem is with the default font.  

However, I have another minor problem. If I set Font.SetTop to 0, it doesn't put the font on the top of the screen, instead it puts the font at approximately Y = 10. If I want the font at the top of the screen I have to put Font.SetTop(-10). It doesn't matter if I scale the font or not. Font.SetLeft works fine.

3
Graphics / Ugly font output
« on: September 30, 2007, 02:04:16 pm »
It doesn't matter the path. SFML has a default buit in font if the path is incorrect, isn't?. The output font of the pong example when you lose o win, also has the same problem.

4
Graphics / Ugly font output
« on: September 30, 2007, 01:19:08 am »
Hi all. I have an strange problems with fonts. I use this code:

sf::String Text("Hello", "arial.ttf", 50.f);
Text.SetColor(sf::Color(128, 128, 0));

//.....

Window.Draw(Text);

And I get this ugly output:



Is there a way to fix this?

Thanks in advance!!

5
General / Warnings in debug mode
« on: September 28, 2007, 08:35:45 pm »
Well, I solved the problem. I just compiled the libraries and no more warnings  :D

6
General / Warnings in debug mode
« on: September 28, 2007, 06:15:03 pm »
Hi all!. I'm trying to compile an example of SFML in debug mode, but I get this warnings:

sfml-system-d.lib(Platform.obj) : warning LNK4099: PDB 'vc80.pdb' was not found with 'C:\Leandro\Programacion\SFML-1.1\lib\vc2005\static\sfml-system-d.lib' or at 'c:\documents and settings\leandro\mis documentos\visual studio 2005\projects\test_sfml\debug\vc80.pdb'; linking object as if no debug info
sfml-system-d.lib(Clock.obj) : warning LNK4099: PDB 'vc80.pdb' was not found with 'C:\Leandro\Programacion\SFML-1.1\lib\vc2005\static\sfml-system-d.lib' or at 'c:\documents and settings\leandro\mis documentos\visual studio 2005\projects\test_sfml\debug\vc80.pdb'; linking object as if no debug info
sfml-system-d.lib(Sleep.obj) : warning LNK4099: PDB 'vc80.pdb' was not found with 'C:\Leandro\Programacion\SFML-1.1\lib\vc2005\static\sfml-system-d.lib' or at 'c:\documents and settings\leandro\mis documentos\visual studio 2005\projects\test_sfml\debug\vc80.pdb'; linking object as if no debug info

The example works fine, but I don't like those warnings.
In Linker-Input-Additional dependencies I have this: sfml-system-d.lib.

Thanks in advance!

Pages: [1]
anything