타겟을 향해 바라봐야한다던가.. 다리같이 뭔가 타겟과 이어주어야 할때
void Start()
{
// z축 +180은 이미지 방향에 따라 수정하여 적용.
// target1은 자신의 객체가 아닌 비교할 해당 객체.
transform.eulerAngles = new Vector3(0, 0, -getAngle(transform.position.x, transform.position.y, target1.position.x, target1.position.y) + 180.0f);
}
private float getAngle(float x1, float y1, float x2, float y2)
{
float dx = x2 - x1;
float dy = y2 - y1;
float rad = Mathf.Atan2(dx, dy);
float degree = rad * Mathf.Rad2Deg;
return degree;
}
----
'Unity > 스크립트' 카테고리의 다른 글
에셋 Android Native Plugins에 대해 (0) | 2015.03.02 |
---|---|
String -> enum 변환 (0) | 2015.02.17 |
기본 변수 저장시 암호화 (0) | 2014.10.16 |
Playerprefs 암호화. (0) | 2014.10.14 |
어떤한 물체가 다른 물체의 공간안에 완벽히 들어와 있는가를 체크하는 공식 (0) | 2014.06.11 |
WRITTEN BY
,