This commit is contained in:
mischa 2024-04-15 13:45:33 +08:00
parent 93365cdf6b
commit 693acc409f

View File

@ -121,7 +121,7 @@ public class ForecastRigidbody : NetworkBehaviour
[Header("Performance")] [Header("Performance")]
// Rigidbody is kept only while predicting & blending. // Rigidbody is kept only while predicting & blending.
// it's automatically removed while following to reduce any physics overhead. // it's automatically removed while following to reduce any physics overhead.
[Tooltip("Option to only keep the Rigidbody while predicting. Automatically destroyed while following. For massive physics scenes.")] [Tooltip("Option to only keep the Rigidbody while predicting. Automatically destroyed while following.\nUseful for massive physics scenes where the client only ever predicts a few Rigidbodies at a time.")]
public bool rigidbodyOnDemand = false; public bool rigidbodyOnDemand = false;
RigidbodyConfiguration rbConfig; RigidbodyConfiguration rbConfig;