Assets/Scenes/SavasController.cs(15,14):
1 2これは何をつたえたいのでしょうか 3写真も要望があればはります 4```C# 5コードusing UnityEngine; 6using System.Collections; 7 8public class SavasController : MonoBehaviour 9{ 10 void Update() 11 { 12 transform.Translate(0, 0.2f, 0); 13 14 if (transform.position.y > 5) 15 { 16 Destroy(gameObject); 17 } 18 19 void OnTriggerEnter2D(Collider2D coll) 20 { 21 Destroy(coll.gameObject); 22 Destroy(gameObject); 23 } 24 } 25}```
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/06 12:45
2019/10/06 12:45
2019/10/06 13:03
2019/10/06 13:05
2019/10/06 13:12
2019/10/06 13:14
2019/10/06 13:17
2019/10/06 13:19
2019/10/06 13:22
2019/10/06 13:25
2019/10/06 13:28
2019/10/06 13:34
2019/10/06 13:35
2019/10/06 13:43
2019/10/06 13:49
2019/10/06 13:58