Why Time.deltatime is used in order to make the things which are dependent on time to operate correctly?

devquora
devquora

Posted On: Feb 22, 2018

 

The real-time applications like games or any other have a variable FPS which usually runs at 60 FPS. During the specific slow-down or up-down, they might even go lower and higher. If any value has to be changed from a to b within one second it cannot be increased because different frames run over a different time period and thus each frame have its own specific time duration. With the appropriate delta time, the value automatically resumed.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Unity3d Interview Questions

    What do you understand by Unity3d?

    Unity is also known as Unity3d which is a platform for the game engine...

    Unity3d Interview Questions

    What is vertex shader in Unity3D?

    In Unity, the vertex shader is a script which usually supports each of the vertexes of mesh...

    Unity3d Interview Questions

    What do you understand by a pixel shader in Unity3D?

    Pixel shader in Unity is the script which runs for each of the fragment operating after three vertex..