Is there a standard way to get the timing values to properly interpolate render frames between fixed updates? Or do i need to write my own GameWindow code?
The official way is to read the FrameEventArgs, which gives the time in seconds since the last frame.
FrameEventArgs
Comments
Re: Interpolation
The official way is to read the
FrameEventArgs, which gives the time in seconds since the last frame.