unity - Vector의 개념 및 주로 사용하는 방식

벡터(Vector) 
힘과 방향을 나타낸다


단위 벡터
길이가 1인 벡터. 보통 방향만 나타내기 위해 사용.















벡터 - blue
단위벡터 - red





오브젝트에서 다른 오브젝트까지 방향과 거리

Direction and Distance from One Object to Another

객체에서 다른 객체로 가르키는 벡터

// Gets a vector that points from the player's position to the target's. var heading = target.position - player.position;

두 객체간의 벡터의 크기(거리,길이)

var distance = heading.magnitude;

방향벡터 (단위벡터) normalized direction

var direction = heading / distance; // This is now the normalized direction.

https://docs.unity3d.com/Manual/DirectionDistanceFromOneObjectToAnother.html

댓글