python之会动的图片

import pygame
import sys

pygame.init()
size= width,height =500,600
screen=pygame.display.set_mode(size)

tu=pygame.image.load("图片地址")
tutu=tu.get_rect()

speed=[5,5]

clock=pygame.time.Clock()

while 1:
clock.tick(30)
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()

if tutu.right < 0 or tutu.left > width:
speed[0] = -speed[0]

if tutu.top < 0 or tutu.bottom >height:

python之会动的图片最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/19793.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>