Mark Hetherington
Mark Hetherington

Reputation: 1701

Is there an easier way of getting Utc time in gamemaker?

The only way I have found is this:

round(date_second_span(date_create_datetime(1970,1,1,0,0,0),date_current_datetime()));

Upvotes: 2

Views: 704

Answers (1)

Dmi7ry
Dmi7ry

Reputation: 1777

GM has not special functions for working with UTC time, so you can use scripts for convert. For back convert you can use this, if need:

/// date_timestamp(timestamp)
// Convert UNIX time to GMS time

var t = date_inc_second(25569+1, argument0);
return date_inc_day(t, -1);

+1 and -1 needed because GMS has a bug

Upvotes: 2

Related Questions