Hello all, i created simple example for windows using Text and Font classes
window
= new RenderWindow
(new VideoMode
(800,
600),
"TextTest",
(int)SFML
.NET.Window.Window.Style.Default,
new ContextSettings
()); var font
= new Font
(); font
.LoadFromFile("Resources/sansation.ttf"); var text
= new Text
("Exa", font, 30u, Color
.Green); text
.SetPosition(new Vector2f
(30f, 50f
)); text
.Color = Color
.Green; while (window
.Window.IsOpen()) { window
.Clear(Color
.White); window
.Draw(text
); window
.Window.Display(); }you can see result on the screen
i set string "Exa" but get Eaa.
does somebody ideas what is problem?