在调整窗口大小时,我该如何处理特定的比例?
我正在使用全屏选项按钮在Python中进行游戏。
当不完整屏幕时,如何允许窗口大小,保持窗口比率相同?
另外,如果某人将全屏放在与16/9不同比率不同的显示器中,我该如何设置比率以避免问题?
I'm making a game in Python with a fullscreen option button.
How can I allow window resize when not in fullscreen, keeping the window ratio the same?
Also, how can I set the ratio to avoid problems if someone puts fullscreen in a monitor with a different ratio from 16/9?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。屏幕分辨率取决于硬件。并非每个硬件都支持每个分辨率。您必须编写一个可以处理不同显示分辨率的应用程序。例如:在Pygame显示表面上缩放所有内容。
You can't. The screen resolution depends on the hardware. Not every hardware supports every resolution. You have to write an application that can handle different display resolutions. e.g.: Scale Everything On Pygame Display Surface.