28 results for "datetime" in function
Parses a date/time string in ISO-8601 format into an FDateTime.
Parses a date/time string in UE's native format (the format produced by FDateTime::ToString()) into an FDateTime.
Returns the maximum representable FDateTime value, which corresponds to December 31, 9999 23:59:59.
Returns the minimum representable FDateTime value, corresponding to January 1, year 1 at 00:00:00.
Adds two FDateTime values by summing their raw tick counts and returns the result as a new FDateTime.
Adds a timespan duration to a date-time value, returning a new FDateTime shifted forward by that amount.
Decomposes an FDateTime into its year, month, day, hour, minute, second, and millisecond components.
Returns true if two FDateTime values represent the exact same point in time.
Returns the timestamp of the most recent transform update that was replicated to the replay recording connection.
Returns the server's last transform update timestamp as replicated to simulated proxies.
Returns true if A is later than or equal to B (A >= B).
Returns true if A is strictly later in time than B (A > B).
Returns true if A is earlier than or equal to B (A <= B).
Returns true if A is strictly earlier in time than B (A < B).
Constructs an FDateTime from individual calendar and time components.
Returns true if two FDateTime values do not represent the same point in time.
RepNotify called on replay connections when ReplayLastTransformUpdateTimeStamp is received.
Returns the elapsed time between two FDateTime values as an FTimespan.
Subtracts a timespan duration from a date-time value, returning a new FDateTime shifted backward by that amount.
Returns the number of days in a given month, correctly accounting for leap years when Month is 2 (February).
Returns 366 for leap years and 365 for all other years.
Converts a Unix timestamp (seconds since 1970-01-01 00:00:00 UTC) into an FDateTime.
Returns a new FDateTime containing only the date portion of A, with the time-of-day set to midnight (00:00:00.
Returns the year component of an FDateTime value as an integer.
Returns true if the time component of the given FDateTime is 12:00:00 or later (noon or after).
Returns true if the time component of the given FDateTime is before 12:00:00 (strictly before noon).
Returns the current local date and time on the machine running the game.
Returns today's local date with the time component set to midnight (00:00:00).