首页 > 解决方案 > 我如何在 Pygame 中保持旋转正方形?

问题描述

我想知道如何在 pygame 中继续旋转一个简单的正方形。

我用黑色背景和中间绘制的白色方块编写了这个简单的代码。我怎么能一直旋转那个白色方块?

继承人的程序:

import pygame
pygame.init()

window = pygame.display.set_mode((500,500))
pygame.display.set_caption("code man")


# the square

class square:
    def __init__(self,x,y,height,width,color):
        self.x = x
        self.y = y
        self.height = height
        self.width = width
        self.color = color
        self.rect = pygame.Rect(x,y,height,width)
    def draw(self):
        self.rect.topleft = (self.x,self.y)
        pygame.draw.rect(window,self.color,self.rect)

white = (255,255,255)
square1 = square(200,200,50,50,white)


# redraw the window

def redraw():
    BLACK = (0,0,0)

    # fill the window black
    window.fill(BLACK)

    # draw the square
    square1.draw()

    # update the screen
    pygame.display.update()

# the main loop
runninggame = True
while runninggame:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            runninggame = False


    # call the redraw
    redraw()

    
   

标签: pythonpygame

解决方案


推荐阅读