本文整理汇总了Python中scene.Scene.modify_background方法的典型用法代码示例。如果您正苦于以下问题:Python Scene.modify_background方法的具体用法?Python Scene.modify_background怎么用?Python Scene.modify_background使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scene.Scene
的用法示例。
在下文中一共展示了Scene.modify_background方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from scene import Scene [as 别名]
# 或者: from scene.Scene import modify_background [as 别名]
def __init__(self, player, boss):
self.p1 = player
self.p2 = boss
p1_status = Scene(max(len(self.p1.name), self.max_health) + 1, 3)
p1_status.modify_background(self.p1.name)
p2_status = Scene(max(len(self.p2.name), self.max_health) + 1, 3)
p2_status.modify_background(self.p2.name)
self.p1.health = HealthBar(self.max_health)
p1_status.add_object(self.p1.health, 0, 2)
self.p1.status_win = p1_status
self.p1.thruster = Thruster(self.p1)
self.p1.thruster.switch_direction()
self.p1.thruster.set_color(curses.COLOR_CYAN)
self.p2.health = HealthBar(self.max_health)
p2_status.add_object(self.p2.health, 0, 2)
self.p2.status_win = p2_status
width, height = Scene.max_view(0, 7)
width *= self.screens
self.main_win = Scene(width, height)
self.main_win.modify_background(self.generate_starfield(width, height))