質問編集履歴

1

修正

2020/07/25 06:04

投稿

release832555
release832555

スコア9

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,12 @@
1
1
  やりたいこと
2
2
 
3
+ 下の画像のように
4
+
5
+ 始点から終点まで25.0の距離間隔(DISTANCE)でオブジェクトを配置
6
+
7
+ 設定するのは間隔距離だけなので設置されるオブジェクト数は最終的に何個になってもよい
8
+
3
- 下の画像のよう自動的にオブジェクトをたいです
9
+ また、始点と終点オブジェクトを置たい
4
10
 
5
11
 
6
12
 
@@ -40,7 +46,7 @@
40
46
 
41
47
  {
42
48
 
43
- VirtualCamera.GetCinemachineComponent<CinemachineTrackedDolly>().m_PathPosition += 25.0f;
49
+
44
50
 
45
51
  Vector3 ObjPos = VirtualCamera.GetCinemachineComponent<CinemachineTrackedDolly>().m_Path.GetComponent<CinemachineSmoothPath>().EvaluatePosition(VirtualCamera.GetCinemachineComponent<CinemachineTrackedDolly>().m_PathPosition);
46
52
 
@@ -48,7 +54,7 @@
48
54
 
49
55
  SetObject(ObjPos);
50
56
 
51
-
57
+ VirtualCamera.GetCinemachineComponent<CinemachineTrackedDolly>().m_PathPosition += 25.0f;
52
58
 
53
59
  Debug.Log("ObjPos = " + ObjPos);
54
60