Daylight Savings / UTC Timezone Offset

Hi , @jo.codegirl, you can get the computer’s datetime with FDateTime:Now(). Also, if you want to have the difference between your pc’s time and the utcDatetime you can do this

int utcnow = FDateTime::UtcNow().GetHour();
int now = FDateTime::Now().GetHour();
int diff = now - utcnow;

and get the difference in hours. Remember use #include “Misc/DateTime.h”

2 Likes