Define Server Time don´t work

I working now for many hours on this “simple” server time solution.
But my time dont start. It still stands at 00:00.

Can someone find the issue? Or help me how to find it faster?
I checked all connections several times…

It have 7 functions:

  • GetFractionOfDay
  • DetermineCurrentTime
  • SetElapsedTimeBasedOnStartTime
  • GetTimeAsSeconds
  • UpdateElapsedTime
  • UpdateCurrentTime
  • SetHudReference
  • And of Course the EVENT GRAPH

In the following posts you find the screenshots of the FUNCTIONS

Can someone figure out where the problem is?

I will be very thankful.

Best Regards

  • GetFractionOfDay

GetFractionOfDay

  • DetermineCurrentTime

  • SetElapsedTimeBasedOnStartTime

  • GetTimeAsSeconds

  • UpdateElapsedTime

5updateelapsedtime

  • UpdateCurrentTime

  • SetHudReference

MAIN EVENT

The Problem, the clock is not running.

Bild_2022-06-20_183842218

What could be the problem?

In UpdateElapsedTime, you are multiplying ElapsedTime by DeltaSeconds.
DeltaSeconds only contains the delta between current frame and last frame. At 60fps that’s around 0,016. You probably want to add instead of multiplying.