Hello!
First of all: Sorry for my terrible English
I am using lastest version pysfml for python33 from official website
and i faced with the problem: sf.Text converts the russian letters into a porridge of symbols
(clickable)import sfml as sf
from sfml import sf # it's for python34 (see spoiler downside)
window = sf.RenderWindow(sf.VideoMode(300, 100), "text example")
font = sf.Font.from_file('monof55.ttf')
text = sf.Text('Привет, SFML!', font)
# Look! Either this widget dont like our letters :)
while window.is_open:
for event in window.events:
if type(event) is sf.CloseEvent:
window.close()
window.clear()
window.draw(text)
window.display()
I tried to use unofficial build sfml for python34.
My problem has been solved but I has got the same issue as in
this topic - unstopable ZERO WIDTH NO-BREAK SPACE ('\uFEFF')
(clickable)I am between Scylla and Charybdis now.
Maybe you know ways to solve this problem. Whatever: make frients pysfml33 and russian letters or fix
this issue.
Thank you.
With love from Siberia.