//출처는 골드메탈님 강의입니다!
MeshRenderer mesh;
Material mat;
// Start is called before the first frame update
void Start()
{
mesh = GetComponent<MeshRenderer>();
mat = mesh.material;
}
//CollisionEnter : 물리적 충돌이 시작할 때 호출되는 함수.
void OnCollisionEnter(Collision collision)
{
if(collision.gameObject.name == "MyBall")
mat.color = new Color(0, 0, 0);
}
private void OnCollisionExit(Collision collision)
{
if (collision.gameObject.name == "MyBall")
mat.color = new Color(0, 1, 0);
}
//물리적인 충돌이 아니기 때문에 충돌 정보가 없다.
//그래서 매개 변수는 collider로 선언되어있다.
private void OnTriggerStay(Collider other)
{
if (other.gameObject.name == "Cube")
rigid.AddForce(Vector3.up * 3, ForceMode.Impulse);
}
이때는 알파값은 낮춤으로써 투명하게 만들 수 있다.