I’m looking for a way to create a daylight cycle like the one in Animal Crossing, where the time in game is the same as the system time. Does anyone know how I would go about doing/starting this?
You can get the system’s current local time using DateTime.Now.
You’ll need to add using System;
to your script imports, if it’s not already there.