鱼C论坛

 找回密码
 立即注册
查看: 1191|回复: 2

[已解决]pygame求助

[复制链接]
发表于 2020-9-3 21:17:34 | 显示全部楼层 |阅读模式

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

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

x
import pygame
import sys

pygame.init()

size = width, height = 600, 400
speed = [-2, -1]
bg = (255, 255, 255)

screen = pygame.display.set_caption('初次见面,请大家多多关照!')

dog = pygame.image.load('dog.jpg')
position = dog.get_rect()

while True:
    for event in pygame.event.get():
        if event.type == pygame.QUITE:
            sys.exit()

    position = position.move(speed)

    if position.left < 0 or position.right > width:

        dog = pygame.transform.flip(dog, True, False)

        speed[0] = -speed[0]

    if position.top < 0 or position.bottom > height:
        speed[1] = -speed[1]

    screen.fill(bg)
    screen.blit(dog, position)
    pygame. display.flip()
    pygame.time.delay(10)
大部分是按照小甲鱼课程的代码码上去的,但是却运行不了得到了
pygame 1.9.6
Hello from the pygame community. https://www.pygame.org/contribute.html
Traceback (most recent call last):
  File "C:/Users/betterman/Desktop/9.3", line 31, in <module>
    screen.fill(bg)
AttributeError: 'NoneType' object has no attribute 'fill'
最佳答案
2020-9-4 00:53:11

参考代码:
import pygame
import sys

pygame.init()

size = width, height = 600, 400
speed = [-2, -1]
bg = (255, 255, 255)

screen = pygame.display.set_mode(size)
pygame.display.set_caption('初次见面,请大家多多关照!')

dog = pygame.image.load('dog.jpg')
position = dog.get_rect()

while True:
    for event in pygame.event.get():
        if event.type == pygame.K_QUOTE:
            sys.exit()

    position = position.move(speed)

    if position.left < 0 or position.right > width:

        dog = pygame.transform.flip(dog, True, False)

        speed[0] = -speed[0]

    if position.top < 0 or position.bottom > height:
        speed[1] = -speed[1]

    screen.fill(bg)
    screen.blit(dog, position)
    pygame. display.flip()
    pygame.time.delay(10)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-4 00:53:11 | 显示全部楼层    本楼为最佳答案   

参考代码:
import pygame
import sys

pygame.init()

size = width, height = 600, 400
speed = [-2, -1]
bg = (255, 255, 255)

screen = pygame.display.set_mode(size)
pygame.display.set_caption('初次见面,请大家多多关照!')

dog = pygame.image.load('dog.jpg')
position = dog.get_rect()

while True:
    for event in pygame.event.get():
        if event.type == pygame.K_QUOTE:
            sys.exit()

    position = position.move(speed)

    if position.left < 0 or position.right > width:

        dog = pygame.transform.flip(dog, True, False)

        speed[0] = -speed[0]

    if position.top < 0 or position.bottom > height:
        speed[1] = -speed[1]

    screen.fill(bg)
    screen.blit(dog, position)
    pygame. display.flip()
    pygame.time.delay(10)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-9-4 09:21:17 | 显示全部楼层

我知道哪里错了,感谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-18 20:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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