You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I managed to get your game working again and it's incredible, how long did it take you?
Delete opengles from the imports, it is useless and it no longer exists, 2. replace: image = pyglet.image.load(d + '/' + file) texture = image.get_mipmapped_texture()
with: if file!="pycrafthd.png": image = pyglet.image.load(d + '/' + file) texture = image.get_mipmapped_texture()
Replace the main font with another (for me it did not load (uner error)) and finally (important) put an alternative to the vision control with the arrows (the mouse barely works and it's very annoying), sorry if my English is not very good I use google translate (I'm French)
Thanks
The text was updated successfully, but these errors were encountered:
I managed to get your game working again and it's incredible, how long did it take you?
image = pyglet.image.load(d + '/' + file) texture = image.get_mipmapped_texture()
with:
if file!="pycrafthd.png": image = pyglet.image.load(d + '/' + file) texture = image.get_mipmapped_texture()
Thanks
The text was updated successfully, but these errors were encountered: