这篇文章主要介绍了如何使用python实现小球弹跳效果,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
具体内容如下
import pygame, sys
pygame.init()
screenGameCaption = pygame.display.set_caption("Ball game")
screen = pygame.display.set_mode([680, 480])
screen.fill([255, 255, 255])
x = 50
y = 50
x_speed = 10
y_speed = 10
# load img
my_ball = pygame.image.load('ball.png')
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
pygame.time.delay(100)
pygame.draw.rect(screen, [255, 255, 255], [x, y, 190, 190], 0)
x = x + x_speed
y = y + y_speed
if x > screen.get_width() - 190 or x < 0:
x_speed = - x_speed
if y > screen.get_height() - 190 or y < 0:
y_speed = - y_speed
screen.blit(my_ball, [x, y])
pygame.display.flip()
pygame.quit()
效果图:
感谢你能够认真阅读完这篇文章,希望小编分享的“如何使用python实现小球弹跳效果”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。