0
在pygame中,我無法旋轉圖像/表面。圖像正確繪製不旋轉。pygame如何正確旋轉圖像?
self.other1 = pygame.image.load("enemy.png").convert_alpha()
self.other2 = pygame.transform.rotate(self.other1, math.radians(270))
self.screen.blit(self.other2, (0, 0))
我究竟做錯了什麼?