ユニティー2Dで音ゲーの判定を作ろうとしていて、
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class notetouch : MonoBehaviour 6{ 7 // Start is called before the first frame update 8 void Start() 9 { 10 11 } 12 13 // Update is called once per frame 14 void Update() 15 { 16 void OnCollisionEnter(Collision collision){ 17 if(collision.gameobject.name == "in"){ 18 Destroy(gameobject); 19 } 20 elseif(collision.gameobject.name == "gr"){ 21 Destroy(gameobject); 22 } 23 elseif(collision.gameobject.name == "go"){ 24 Destroy(gameobject); 25 } 26 elseif(collision.gameobject.name == "ba"){ 27 Destroy(gameobject); 28 } 29} 30 } 31} 32
というコードを書いたのですが、いざアッタしようと思うと
Plese fix compile eroors befor creating new script componets.
というエラーが出てできません!!
どうすればいいですか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/19 12:34
2021/06/19 12:40
2021/06/19 22:08
2021/06/19 22:17
2021/06/20 03:23
2021/06/20 07:13
2021/06/20 10:20
2021/06/20 12:01
2021/06/20 12:06
2021/06/20 12:36
2021/06/22 09:26