解锁FPS帧率上限

参考[自定义参数启动]的预览图勾选 [解锁游戏内帧率上限] 后即可解锁FPS上限

勾选启用该功能后,您可以在右侧显示[120]的输入框中自定义您的游戏帧率上限限制

  • 一些常见的问题:

    • 开启本功能会封号吗
      • 不知道,敢用就用,用就不要怕怕就不用用
    • 会导致客户端损坏吗
      • 不会,此功能不会修改您计算机的任何文件
    • 为什么我解锁之后跑不到所设置的帧率
      • 请确保您使用了管理员身份运行此程序
      • 请确保游戏内设置中【垂直同步】选项关闭
      • 请确保开启本功能后您没有退出此程序
    • 其他问题
  • 解锁FPS的实现方式:

    • DGP.Genshin.FPSUnlockingopen in new window

    • 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
      9

      Or 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
上次更新: