鱼C论坛

 找回密码
 立即注册
查看: 798|回复: 1

新人用pygame出现了这个,有大老帮忙解决一下吗

[复制链接]
发表于 2020-4-22 17:03:39 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
这是代码
import pygame

pygame.init()

screen = pygame.display.set_mode((480, 700))
bg = pygame.image.load(r"*\background.png")
screen.blit(bg, (0, 0))

hero = pygame.image.load(r"*\me1.png")
screen.blit(hero, (100, 500))

pygame.display.update()

clock = pygame.time.Clock()
hero_rect = pygame.Rect(100, 500, 102, 126)

while True:
    clock.tick(60)
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            pygame.quit()
   

    hero_rect.y -= 1

    if hero_rect.y <= -126:
        hero_rect.y = 700

screen.blit(bg, (0, 0))
screen.blit(hero, hero_rect)

pygame.display.update()

pygame.quit()
下面是显示的错误
for event in pygame.event.get():
pygame.error: video system not initialized
libpng warning: iCCP: known incorrect sRGB profile
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-22 21:50:39 | 显示全部楼层
只是使用了PNG格式的图片出现的警告,并不会影响程序的运行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 19:29

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表