Pygame OpenGL获取窗口大小
我正在开发一个 pygame opengl 项目。我有一个可调整大小的窗口,但我无法确定它的大小。以下方法仅返回窗口的原始大小,而不是当前大小(调整大小后):
pygame.display.get_surface().get_size()
screen.get_width(),screen.get_height()
任何帮助将不胜感激。
I am working on a pygame opengl project. I have a resizable window, but I'm having trouble getting the size of it. The following methods only return the original size of the window, not the current size (after it has been resized):
pygame.display.get_surface().get_size()
screen.get_width(),screen.get_height()
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决这个问题的方法。如果您遇到同样的问题,请使用以下方法:
I found a solution to this. Use the following if you have the same problem: