質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
すでにNavigationはBakeされています。
|
4
4
|
|
5
5
|
|
6
|
+
|
7
|
+
下記のコードは「**Move()**を実行するとこのオブジェクトはx,z軸ランダムに最大20m移動する」というものです。
|
6
8
|
|
7
9
|
```C#
|
8
10
|
|
@@ -12,7 +14,7 @@
|
|
12
14
|
|
13
15
|
void Move(){
|
14
16
|
|
15
|
-
Vector3 position = new Vector3(gameObject.transform.position.x + Random.Range(
|
17
|
+
Vector3 position = new Vector3(gameObject.transform.position.x + Random.Range(-20, 20), 0.2f, gameObject.transform.position.z + Random.Range(-20, 20));
|
16
18
|
|
17
19
|
|
18
20
|
|