Пример #1
0
 private void OnTimeUpdate(int h, int m, int s, KS_TimeManager.DayTimeZone zone)
 {
     timeText.text    = "Current time - " + timeManager.GetTimeFormatted();
     zoneText.text    = "Current zone - " + zone.ToString();
     latLongText.text = "Lat/long - " + dayNight.latitude + " : " + dayNight.longitude;
     scaletext.text   = "Scale - " + timeManager.secondsPerMinute.ToString("0.000") + "s per minute";
 }
Пример #2
0
 void OnTimeUpdate(int h, int m, int s, KS_TimeManager.DayTimeZone zone)
 {
     timeBox.text = h.ToString("00") + ":" + m.ToString("00");
     zoneBox.text = zone.ToString().ToUpper();
 }