图像没有出现在python 3.6.5中的pygame中

问题描述 投票:2回答:1

我在win32上使用Python 3.6.5中的Pygame,而我的MarioGround.png没有显示出来。我还有两个图像,其中一个正在工作,另一个不是。我也没有错。这是我的完整代码(待处理):

import pygame

pygame.init()

black = (0,0,0)
white = (255,255,255)
red = (255,0,0)
blue = (0,0,255)
sky_blue = (0,150,225)
green = (0,255,0)

displayWidth = 800

displayHeight = 600
#Final :- pygame.display.set_mode((1365, 1050))
gameDisplay = pygame.display.set_mode((displayWidth,displayHeight))
pygame.display.set_caption('Super Mario')
clock = pygame.time.Clock()


crashed = False

timeOut = False

Quit = False

#50,75
marioStanding = pygame.image.load('Super_Mario_Standing2.png').convert()
marioStanding = pygame.transform.scale(marioStanding, (displayWidth//16,displayHeight//8))

ground = pygame.image.load('MarioGround.png')

def Stand(mx,my):
    gameDisplay.blit(marioStanding,(mx,my))

mx = (displayWidth * 0.45)
my = (displayHeight * 0.8)

def makeGround(gx,gy):
    gameDisplay.blit(ground,(gx,gy))

gx = (displayHeight * 0.45)
gy = (displayWidth * 0.8)

while not crashed and not timeOut and not Quit:

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            Quit = True

    print (event)

    gameDisplay.fill(sky_blue)
    makeGround(gx,gy)
    Stand(mx,my)

    pygame.display.update()
    clock.tick(24)

pygame.quit()
quit()

我的Super_Mario_Standing2.png正在出现,虽然MarioGround.png不是。这里作为两者的链接:MarioGround.png:https://drive.google.com/open?id=1Jz7zTI5Cukv8fXlmyOEkwJTOTkuxIGUP

Super Mario Standing.png:qazxsw poi

谢谢!!!

python python-3.x image pygame python-3.6
1个回答
1
投票

你混淆了https://drive.google.com/open?id=1eUDAin-BUUzi6l-DgxHrf9v8JP8kdAPtdisplayWidth变量,这意味着displayHeight变量是640(屏幕下方)。只需交换它们(此外,这里不需要括号):

gy
© www.soinside.com 2019 - 2024. All rights reserved.