//공의 발사각도 설정
transform.right = new Vector2(Mathf.Cos(shotAngle * Mathf.Deg2Rad), Mathf.Sin(shotAngle * Mathf.Deg2Rad));
//설정된 각도로 shotVelocity 속도로 발사
ballRB2D.velocity = transform.right * shotVelocity;
float totalTime = 2 * shotVelocity * Mathf.Sin(shotAngle * Mathf.Deg2Rad) / 9.81f;
//걸린 시간은 2t
//중력가속도 9.81f
//최고 높이
//(V*sin(theta))^2 / 2g (식을 간단하게 바꾼거)
float centerHeight = Mathf.Pow(shotVelocity * Mathf.Sin(shotAngle * Mathf.Deg2Rad), 2) / (2*9.81f); // (V*sin(theta))^2 / 2g
//총 거리
//2sin(theta)cos(theta) == sin(2theta)
//v^2/g*sin(2*theta) (식을 간단하게 바꾼거)
float totalMeter = Mathf.Pow(shotVelocity,2) / 9.81f * Mathf.Sin(2 * shotAngle * Mathf.Deg2Rad); // v^2/g*sin(2*theta)
발사 시 시간과 거리와 이론 상 수치를 비교해보면 거의 동일하게 나오는 것을 확인할 수 있다.
값이 정확하게 일치하지 않는 이유 : project setting - physics 2D 의 항목에 따라 내부 연산 방법이 달라짐