本文整理汇总了Python中space.Space.surf方法的典型用法代码示例。如果您正苦于以下问题:Python Space.surf方法的具体用法?Python Space.surf怎么用?Python Space.surf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类space.Space
的用法示例。
在下文中一共展示了Space.surf方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Space
# 需要导入模块: from space import Space [as 别名]
# 或者: from space.Space import surf [as 别名]
space = Space((10000, 10000))
parallax = Space((7071, 7071))
# surface_objects = [hero, space]
# star = Star(10, (10,10))
# Make a shitload of stars
stars = []
starcount = 10000
for i in range(starcount):
if i < 0.8 * starcount:
stars.append(Star(randint(1, 3), (randint(0, 10000), randint(0, 10000))))
stars[i].render(parallax.surf())
else:
stars.append(Star(randint(3, 5), (randint(0, 10000), randint(0, 10000))))
# size = randint(3, 5)
# x = randint(0, 10000)
# y = randint(0, 10000)
# stars = [Star(size, x, y) in range(starcount)].render(space.surf())
stars[i].render(space.surf())
while True:
window.fill(background)
keys = pygame.key.get_pressed()
if keys[K_UP]: