I followed this tutorial: https://youtu.be/l7YiASYgDC0
And it works great for my first scene, but when the second one loads, the movement of the player don’t work. But camera movements works fine. And like i said, there are no errors.
I followed this tutorial: https://youtu.be/l7YiASYgDC0
And it works great for my first scene, but when the second one loads, the movement of the player don’t work. But camera movements works fine. And like i said, there are no errors.
For some reason the game time is set to 0, but you can still move the camera without moving the FPS person. So the solution to this problems is to attach a script with this code to any of your active gameobjects.
void Start () {
Time.timeScale = 1;
}