回答編集履歴
1
typoしていた
answer
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
こんな感じでダメですか?
|
2
2
|
|
3
3
|
```C#
|
4
|
-
float
|
4
|
+
float min = 0.0f;
|
5
|
-
float
|
5
|
+
float max = 360.0f;
|
6
6
|
|
7
7
|
void Update() {
|
8
8
|
float angle = Mathf.LerpAngle(min, max, Time.time);
|