本文整理匯總了Python中pyglet.sprite.Sprite.rotation方法的典型用法代碼示例。如果您正苦於以下問題:Python Sprite.rotation方法的具體用法?Python Sprite.rotation怎麽用?Python Sprite.rotation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pyglet.sprite.Sprite
的用法示例。
在下文中一共展示了Sprite.rotation方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: player_icons
# 需要導入模塊: from pyglet.sprite import Sprite [as 別名]
# 或者: from pyglet.sprite.Sprite import rotation [as 別名]
def player_icons(self, batch=None):
self._life_icons = set()
WIDTH = self.win_size[0]
HEIGHT = self.win_size[1]
for idx in range(self._num_lives):
new_sprite = Sprite(img=resources.get_image('engine_stop'),
x=WIDTH - 15 - idx * 30, y=HEIGHT - 15, batch=batch)
new_sprite.scale = 0.3
new_sprite.rotation = -90
self._life_icons.add(new_sprite)
return self._life_icons