鱼C论坛

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

[技术交流] P88 为啥运行是黑屏 求助

[复制链接]
发表于 2020-4-26 11:36:51 | 显示全部楼层 |阅读模式

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

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

x
import pygame
import sys
from pygame.locals import *

pygame.init()
pygame.mixer.init()

pygame.mixer.music.load('1.mp3')
pygame.mixer.music.set_volume(0.2)
pygame.mixer.music.play()

cat_sound = pygame.mixer.Sound('2.wav')
cat_sound.set_volume(0.2)
dog_sound = pygame.mixer.Sound('3.wav')
dog_sound.set_volume(0.2)


bg_size = width,height = 300,200
screen = pygame.display.set_mode(bg_size)
pygame.display.set_caption('Music - FishC Demo')

pause = False

pause_image = pygame.image.load('2.png').convert_alpha()
unpause_image = pygame.image.load('1.png').convert_alpha()
pause_rect = pause_image.get_rect()
pause_rect.left,pause_rect.top = (width - pause_rect.width) // 2,(height - pause_rect.height) //2

clock = pygame.time.Clock()

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

        if event.type == MOUSEBUTTONDOWN:
            if event.button == 1:
                cat_sound.play()
            if event.button ==3:
                dog_sound.play()

        if event.type == KEYDOWN:
            if event.key == K_SPACE:
                pause = not pause

    screen.fill((255,255,255))

    if pause:
        screen.blit(pause_image,pause_rect)
        pygame.mixer.music.pause()
    else:
        screen.blit(pause_image,pause_rect)
        pygame.mixer.music.unpause()

    pygame.display.flip()

    clock.tick(30)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-4-26 11:39:50 | 显示全部楼层
问题解决,图片太大,背景设置太小。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-26 20:47

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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