From 693acc409fcfc97d71e182bd0f01bd7dd2e637c2 Mon Sep 17 00:00:00 2001 From: mischa Date: Mon, 15 Apr 2024 13:45:33 +0800 Subject: [PATCH] tooltip --- Assets/Mirror/Components/ForecastRigidbody/ForecastRigidbody.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Mirror/Components/ForecastRigidbody/ForecastRigidbody.cs b/Assets/Mirror/Components/ForecastRigidbody/ForecastRigidbody.cs index 310bbe3fd..97fabd670 100644 --- a/Assets/Mirror/Components/ForecastRigidbody/ForecastRigidbody.cs +++ b/Assets/Mirror/Components/ForecastRigidbody/ForecastRigidbody.cs @@ -121,7 +121,7 @@ public class ForecastRigidbody : NetworkBehaviour [Header("Performance")] // Rigidbody is kept only while predicting & blending. // 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; RigidbodyConfiguration rbConfig;