pygame中的“添加”按钮显示屏幕为黑色

时间:2019-04-24 20:07:49

标签: python python-3.x pygame

我正在使用pygame在Python 3.7中创建游戏。我想在游戏中添加带有“播放”文本的按钮。

我试图更改颜色,字体和文本以及按钮的大小,但没有任何帮助。

import pygame.font

class Button():

    def __init__(self, ai_settings, screen, msg):
        """Inicjalizacja atrybutów przycisku."""
        self.screen = screen
        self.screen_rect = screen.get_rect()

        #Zdefiniowanie wymiarów i właściwości przycisku.
        self.width, self.height = 200, 50
        self.button_color = (0, 255, 0)
        self.text_color = (100, 255, 100)
        self.font = pygame.font.SysFont(None, 48)

        #Utworzenie prostokąta przycisku i wyświetlenie go.
        self.rect = pygame.Rect(0, 0, self.width, self.height)
        self.rect.center = self.screen_rect.center
        self.prep_msg(msg)

    def prep_msg(self, msg):
        """Umieszczenie komunikatu w wygenerowanym obrazie i 
        wyśrodkowanie tekstu na przycisku"""
        self.msg_image = self.font.render(msg, True, self.text_color, 
        self.button_color)
        self.msg_image_rect = self.msg_image.get_rect()
        self.msg_image_rect.center = self.rect.center

    def draw_button(self):
        #Wyświtlenie pustego przycisku, a następnie komunikatu na nim.
        self.screen.fill(self.button_color, self.rect)
        self.screen.blit(self.msg_image, self.msg_image_rect)

我创建了一个新类,并向主要功能添加了一些代码。当我尝试运行代码时,窗口仅显示黑色背景,按钮正常工作,因为当我在屏幕中心点(应显示按钮的位置)上单击鼠标时,游戏开始。

0 个答案:

没有答案