回答編集履歴
1
Time.fixedDeltaTimeの記述について追記
test
CHANGED
@@ -11,6 +11,20 @@
|
|
11
11
|
|
12
12
|
|
13
13
|
とのことですので、間違いというわけではないかと思います。
|
14
|
+
|
15
|
+
また、[Time.fixedDeltaTime - Unity スクリプトリファレンス](https://docs.unity3d.com/ja/current/ScriptReference/Time-fixedDeltaTime.html)には...
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
> For reading the delta time it is recommended to use Time.deltaTime instead because it automatically returns the right delta time if you are inside a FixedUpdate function or Update function.
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
__デルタ時間の取得には、代わりにTime.deltaTimeを使うことが推奨されます。これはFixedUpdate関数内でもUpdate関数内でも、自動的に正しいデルタ時間を返すためです。__
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
との記述もありました。
|
14
28
|
|
15
29
|
|
16
30
|
|