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.
正如我在这个vimeo 视频中看到的那样,有一个很好的功能可以扩展整个界面,但我在任何地方都找不到任何文档告诉我该怎么做(在 1.3.2 手册中也没有)。
您可以使用“基本分辨率”在 Nifty 实例上启用它。这个“基本分辨率”将被用作你的 gui 的初始大小,当它被启用时,实际的 gui 将自动缩放到实际的屏幕分辨率:
nifty.enableAutoScaling(1024, 768);
另一种使用方法是设置“基本分辨率”并直接提供宽度和高度的比例因子:
nifty.enableAutoScaling(1024, 768, 2.0, 2.0);
请参阅Nifty类以供参考,并且还有一个示例可用。