-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathClock.cs
34 lines (27 loc) · 942 Bytes
/
Clock.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using Pure.DI;
using UnityEngine;
#pragma warning disable CS0649
public class Clock : MonoBehaviour
{
const float HoursToDegrees = -30f, MinutesToDegrees = -6f, SecondsToDegrees = -6f;
[SerializeField]
private Transform hoursPivot;
[SerializeField]
private Transform minutesPivot;
[SerializeField]
private Transform secondsPivot;
[Dependency]
public IClockService ClockService { private get; set; }
void Start()
{
// Injects dependencies
Composition.Shared.BuildUp(this);
}
void Update()
{
var now = ClockService.Now.TimeOfDay;
hoursPivot.localRotation = Quaternion.Euler(0f, 0f, HoursToDegrees * (float)now.TotalHours);
minutesPivot.localRotation = Quaternion.Euler(0f, 0f, MinutesToDegrees * (float)now.TotalMinutes);
secondsPivot.localRotation = Quaternion.Euler(0f, 0f, SecondsToDegrees * (float)now.TotalSeconds);
}
}