Unity has a global Time object that people use extensively across their code. It has a few concepts that i’m finding very hard to grasp in Urho:
https://docs.unity3d.com/ScriptReference/Time.html
- deltaTime: The time in seconds it took to complete the last frame
- smoothDeltaTime: A smoothed out Time.deltaTime
- time: The time at the beginning of this frame. This is the time in seconds since the start of the game.
In Urho, when you have a component, you get a float called timeStep in the FixedUpdate() and Update() classes. That timeStep is the number of seconds since the beginning of the frame? Or is it the time it took to complete the last frame? What would be the equivalent in Urho to those Unity variables?