PUN Classic (v1)、PUN 2 和 Bolt 處於維護模式。 PUN 2 將支援 Unity 2019 至 2022,但不會添加新功能。 當然,您所有的 PUN & Bolt 專案可以用已知性能繼續運行使用。 對於任何即將開始或新的專案:請切換到 Photon Fusion 或 Quantum。

Bolt Temporal Aliasing

Bolt has built-in support for handling the disjoint relationship between Update and FixedUpdate in Unity. The simulation (FixedUpdate) and rendering (Update) portion of your game does not always line up 1:1 with each other. This causes what's commonly known as micro-stutter. You can find an explanation of this here.

This support is intended for proxies only and not your controller. You will have to find your own solution for the controller (note: the link above provides code to do this).

In order to implement this see this page here.

Back to top