Posted August 02, 2022 by Mrpotatoman450
i added some random assests from https://devassets.com/assets/desert-environment/
then i did a stopwatch with help of
i also added some fix to how it writes time - adds a '0' if the seconds value is less than '10'
if (seconds.Length < 2)
{
add = "0" + seconds;
seconds = add;
}
nothing big just for future reference