Answers for "unity object slow motion"

1

objects falling really slow in unity

If these don't work copy it and add ur own answer
Obvious possible causes:
	Have you tampered with physics settings, like... gravity? or scaled time?

Other possible causes:
    try disabling suggested components - 
        Animator , try settings animate physics to false
        Scripts that apply force on rigidbody
Posted by: Guest on August-07-2021
0

slow mo in unity

using UnityEngine;

public class SlowMo : MonoBehaviour
{
    void Update()
    {
    if (Input.GetKeyDown(KeyCode.//input key))
        {
        Time.timeScale = 0.3f; //<-- this value is for slow down intensity
        }
    if (Input.GetKeyUp(KeyCode.//input key))
        {
        Time.timeScale = 1f;
        }        
    }
}
Posted by: Guest on June-14-2021

Browse Popular Code Answers by Language