解锁FPS帧率上限
参考[自定义参数启动]的预览图勾选 [解锁游戏内帧率上限] 后即可解锁FPS上限
勾选启用该功能后,您可以在右侧显示[120]的输入框中自定义您的游戏帧率上限限制
一些常见的问题:
解锁FPS的实现方式:
Simple Usage
flexible way
//create a genshin impact process Process p = new(){...}; //pass the process and target fps to unlocker Unlocker unlocker = new(p,144); //start the process p.Start(); //immediately call the UnlockAsync method //this method will not return until an error occurred or the process has exited var result = await unlocker.UnlockAsync();
1
2
3
4
5
6
7
8
9Or straightforward way
//create a genshin impact process Process p = new(){...}; //pass the process and target fps to unlocker Unlocker unlocker = new(p,144); //start the process and immediately call the UnlockAsync method //this method will also not return until an error occurred or the process has exited var result = await unlocker.StartProcessAndUnlockAsync();
1
2
3
4
5
6
7