やりたいこと
初心者ですいません。
OncolisionEnterからOnResetButtonメソッドを呼び出したいです。
どなたかわかる人がいたら教えてください。
コード
c#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class PlayerSelectorSelector : MonoBehaviour 6 7 public GameObject costume1; 8 public GameObject costume2; 9 public GameObject costume3; 10 public GameObject costume4; 11 GameObject instance; 12 int coutume_number; 13 14 // Start is called before the first frame update 15 void Start() 16 { 17 OnResetButton(); 18 } 19 20 // Update is called once per frame 21 void Update() 22 { 23 24 } 25 26 public void OnResetButton() 27 { 28 coutume_number = Random.Range(1, 4); 29 Debug.Log("Reset"); 30 if (coutume_number == 1) 31 { 32 this.instance = Instantiate(costume1) as GameObject; 33 } 34 else if (coutume_number == 2) 35 { 36 this.instance = Instantiate(costume2) as GameObject; 37 } 38 else if (coutume_number == 3) 39 { 40 this.instance = Instantiate(costume3) as GameObject; 41 } 42 else if (coutume_number == 4) 43 { 44 this.instance = Instantiate(costume4) as GameObject; 45 } 46 47 } 48 public void OnSetButton() 49 { 50 this.instance.GetComponent<Rigidbody2D>().bodyType = RigidbodyType2D.Dynamic; 51 } 52 53 private void OnCollisionEnter(Collision collision) 54 { 55 //ここからOnResetButtonを呼び出したい。 56 }
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。