Vector3
미리 준비된 Vector3 값 작성법 의미 Vector3.forward 앞쪽으로, Vector3(0.0f, 0.0f, 1.0f) 와 동일 Vector3.back 뒤쪽으로, Vector3(0.0f, 0.0f, -1.0f) 와 동일 Vector3.left 왼쪽으로, Vector3(-1.0f, 0.0f, 0.0f) 와 동일 Vector3.right 오른쪽으로, Vector3(1.0f, 0.0f, 0.0f) 와 동일 Vector3.up 위쪽으로, Vector3(0.0f, 1.0f, 0.0f) 와 동일 Vector3.down 아래쪽으로, Vector3(0.0f, -1.0f, 0.0f) 와 동일 Vector3.zero 모두 0으로, Vector3(0.0f, 0.0f, 0.0f) 와 동일
2016. 3. 15.