Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Gosu 中启用高 DPI 模式?另外,我如何让 DPI 乘以坐标?
Gosu 目前不包含任何 DPI 助手。如果您认为应该这样做,请提交 GitHub 问题。
让您的游戏在 HiDPI 屏幕上看起来不错的最简单方法是以 @2x 比例绘制所有内容(无论屏幕 DPI 是多少)并Window#draw通过scale(0.5, 0.5) do <drawing code here> end.
Window#draw
scale(0.5, 0.5) do <drawing code here> end