슬라임을 공격했을 때 두 개의 작은 슬라임으로 분해되고 슬라임끼리 만났을 때 하나의 큰 슬라임으로 합쳐지도록 만들 것이다. 1. 나눠지게 먼저 슬라임이 공격 받았을 때 작은 슬라임으로 나누어지게 하기 위해서 1 2 3 4 5 6 7 8 9 10 11 12 13 14 float smallScale = this.transform.localScale.z * 2 / 3; public GameObject slime; public void divideSlime() { if (!(this.smallScale this.transform.position.x) { Vector3 pos = new Vector3((transform.position.x + this.otherPos.x) / 2, (transform.positi..