1
私は単にこれを行うことができると思った:(Pygame/Python)四角形の中央に基づいてオブジェクトを画面に配置するにはどうすればいいですか?
self.rect = self.image.get_rect(center=((self.pos_x, self.pos_y)))
をしかし、それは同じ効果があるようです:私は何をしないのです
self.rect = self.image.get_rect(bottomleft=((self.pos_x, self.pos_y)))
を?両方のオブジェクトは、(pos_x、pos_y)タプルがその左下隅を記述しているかのように入ります。あなただけでスプライトを配置ここでは、たとえば、top, bottom, left, right, topleft, topright, bottomleft, bottomright, size, width, height, center, centerx, centery, midleft, midright, midtop, midbottom #(this is from pygame docs)
あなたは、画面の任意の位置であなたのスプライトを配置するために使用することができます。
確かに、ありがとうございました! –