Pyglet classes that have x,y properties and a draw() method should have similar
properties. The pyglet.sprite.Sprite class has a "position" property that moves
the sprite on the screen but pyglet.text.Label does not.
Since this works:
sprite.position = (50, 50)
sprite.draw()
This should also work:
label.position = (50,50)
label.draw()
Original issue reported on code.google.com by dodgyvi...@gmail.com on 18 Feb 2014 at 4:51
Original issue reported on code.google.com by
dodgyvi...@gmail.com
on 18 Feb 2014 at 4:51