本文整理汇总了Python中ball.Ball.paddle_list方法的典型用法代码示例。如果您正苦于以下问题:Python Ball.paddle_list方法的具体用法?Python Ball.paddle_list怎么用?Python Ball.paddle_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ball.Ball
的用法示例。
在下文中一共展示了Ball.paddle_list方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Ball
# 需要导入模块: from ball import Ball [as 别名]
# 或者: from ball.Ball import paddle_list [as 别名]
from score import Score
pygame.init()
screen = pygame.display.set_mode((constants.screen_width, constants.screen_height))
pygame.display.set_caption("Pong")
clock = pygame.time.Clock()
ball = Ball(random.randint(0, 800), random.randint(0, 600))
paddle1 = Paddle(10, constants.screen_height/2)
paddle2 = Paddle(780, constants.screen_height/2)
paddle_list = [paddle1, paddle2]
ball.paddle_list = paddle_list
scoreBoard = Score(constants.screen_width/2, 0)
def terminate():
pygame.quit()
sys.exit()
while True:
# Fill the screen
screen.fill(constants.BLACK)
# Display the game objects
for paddle in paddle_list:
screen.blit(paddle.image, (paddle.rect.x, paddle.rect.y))
screen.blit(ball.image, (ball.rect.x, ball.rect.y))