我想了解get_rect()是如何工作的。在这个简单的例子中,我有两个图像,希望获得第二个图像的位置,并将第一个图像移动到第二个图像。
我在网上看过各种各样的例子,但都无法让它发挥作用。我做错什么了?import pygame, sys
from pygame.locals import *
import time
pygame.init()
FPS = 10 # frames per second setting
fpsClock = pygame.time.Clock()
# Set up the window
DISPLAYSURF = pygame.display.set_mode((600, 400), 0, 32)
pygame.display.set_caption(‘Test program for get_rect()’)
WHITE = (255, 255, 255)
# Load two images
baseImg = pygame.image.load(‘image1.jpg’)
spaceshipImg = pygame.image.load(‘image2.jpg’)
DISPLAYSURF.fill(WHITE)
# Place one image at the bottom of the screen
DISPLAYSURF.blit(baseImg, (300, 300))
pygame.display.update()
# Place the second image at the top of the screen
DISPLAYSURF.blit(space