Search Unity

Timestamp

Discussion in 'Scripting' started by Adrianoooz, Jan 21, 2019.

  1. Adrianoooz

    Adrianoooz

    Joined:
    Jan 15, 2019
    Posts:
    12
    Hello guys,
    I'm parsing data from a txt file for a given satellite position. One of the lines which I'm trying to parse is "timestamp:1548068820" (those are seconds passed since 1970)
    I'm trying to convert downloaded timestamp time to UTC time, but with no success:(

    Can anyone help me?

    Thanks alot in advance,
    greetings!
     
  2. stefan_s_from_h

    stefan_s_from_h

    Joined:
    Nov 26, 2017
    Posts:
    72
    Make a UTC DateTime for 1970-01-01 and add the seconds with AddSeconds.
     
    Adrianoooz likes this.
  3. Adrianoooz

    Adrianoooz

    Joined:
    Jan 15, 2019
    Posts:
    12
    Thank you..
    It finnaly worked out for me!