playerprefs saves

hey i was just wandering before i start doing it how i would i save a time of 0.00.00.0 using player prefs…

would i have to create a few player prefs to store it all or can i store it as one long number and insert the dots between each number

If it’s time you can store it as a float and format it however you like, but if you want that exact type of storage, store it as a string, and parse the string when reading it by using String.Split(“.”[0])