SFML community forums
Help => Graphics => Topic started by: Shay9999 on June 09, 2011, 04:23:10 am
-
I have a problem with the String class. I get an Error saying that certain functions such as SetFont and SetScale are not part of sf::String class. I want to be able to draw text onto the screen
sf::RenderWindow Window;
...
Window.Draw (Text);
but this problem is getting me into some errors. This is what I have so far along with the lines above:
sf::String Text = "Nacho Cheese";
Text.SetFont(sf::Font::GetDefaultFont());
Text.SetScale(2.f, 2.f);
I have a feeling the error has something to do with making a Text class item, but I have no idea. Anyone know what I'm doing wrong?
-
you want sf::Text
-
I changed the code to:
sf::Text Text - "Meet Gary";
Text.SetFont(sf::Font::GetDefaultFont());
Window.Draw(Text);
and I got this error:
1>c:\users\desktop\visc++\Project\Project\main.cpp(13) : error C2440: 'initializing' : cannot convert from 'const char [10]' to 'sf::Text'
1> Constructor for class 'sf::Text' is declared 'explicit'
-
The message says everything: The constructor is explicit, i.e. the const char* has to be passed as constructor argument:
sf::Text text("Meet Gary");
-
Changed it to:
sf::Text text = ("Meet Gary");
text.SetFont(sf::Font::GetDefaultFont());
Window.Draw(text);
and received:
1>c:\users\desktop\visc++\Project\Project\main.cpp(14) : error C2440: 'initializing' : cannot convert from 'const char [10]' to 'sf::Text'
1> Constructor for class 'sf::Text' is declared 'explicit'
-
Read again Nexus's post ^^
-
You want.. sf::String
sf::String Text("Nacho Cheese");
Text.SetFont(sf::Font::GetDefaultFont());
Text.SetScale(2.f, 2.f);
You must initalize Text like that so it calls the constructor to initalize the text inside the string.. you could also
sf::String Text;
Text.SetText("Cheese");
...
oh... I haven't used 2.0 yet.. so I guess it is sf::Text.. disregard this I guess, unless you are using 1.6. :\..
I guess I should try 2.0....