关于 pygame 方法之一 get_rect () 的问题

发布于 2025-01-17 05:02:58 字数 1539 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗笺 2025-01-24 05:02:58

pygame.Surface.get_rect.get_rect()返回一个矩形(pygame.Rect) 与 Surface 对象的大小,自 Surface 起始终从 (0, 0) 开始em> 对象没有位置。
矩形的位置可以通过关键字参数指定。例如,可以使用关键字参数center指定矩形的中心。这些关键字参数应用于 pygame.Rect 的属性 返回之前(请参阅 pygame.Rect 查看关键字的完整列表论据)。

例如:

image = pygame.image.load('my.png')
rect = image.get_rect(center = (100, 100))

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 the pygame.Rect before it is returned (see pygame.Rect for a full list of the keyword arguments).

e.g.:

image = pygame.image.load('my.png')
rect = image.get_rect(center = (100, 100))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文