当たった箇所からParticleを発生さようとしたところ、
Debug.logで座標は取れたのですが、
contact.pointから発生させる場合、どこに挿入すれば良いか分からず、
途方にくれてしまいました。
どなたか対処法を知っている方がいらっしゃいましたら、
教えて頂けたら幸いですm(_ _)m
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class Action : MonoBehaviour 6{ 7 public GameObject Effect; 8 // Start is called before the first frame update 9 void Start() 10 { 11 12 } 13 14 // Update is called once per frame 15 void Update() 16 { 17 18 } 19 private void OnCollisionEnter(Collision other) 20 { 21 if (other.gameObject.tag == "Hand") 22 { 23 foreach (ContactPoint contact in other.contacts) 24 { 25 Debug.Log(contact.point); 26 Instantiate(Effect); 27 } 28 } 29 }
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。