We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
pygame.Surface.get_rect.get_rect()
返回一个矩形(
pygame.Rect
) 与 Surface 对象的大小,自 Surface 起始终从 (0, 0) 开始em> 对象没有位置。矩形的位置可以通过关键字参数指定。例如,可以使用关键字参数
center
指定矩形的中心。这些关键字参数应用于pygame.Rect
的属性 返回之前(请参阅pygame.Rect
查看关键字的完整列表论据)。例如:
pygame.Surface.get_rect.get_rect()
returns a rectangle (pygame.Rect
) with the size of the Surface object, that always starts at (0, 0) since a Surface object has no position.The position of the rectangle can be specified by a keyword argument. For example, the center of the rectangle can be specified with the keyword argument
center
. These keyword argument are applied to the attributes of thepygame.Rect
before it is returned (seepygame.Rect
for a full list of the keyword arguments).e.g.: