LoginSignup
16
10

More than 5 years have passed since last update.

Unityは、左手座標系です。

Posted at
方向 向き
X方向 右が正
Y方向 上が正
Z方向 奥が正

Vector2のプロパティ

プロパティ 説明
zero Vector2(0, 0)
one Vector2(1, 1)
right Vector2(1, 0)
up Vector2(0, 1)

Vector3のプロパティ

プロパティ 説明
zero Vector3(0, 0, 0)
one Vector3(1, 1, 1)
left Vector3(-1, 0, 0)
right Vector3(1, 0, 0)
forward Vector3(0, 0, 1)
back Vector3(0, 0, -1)
up Vector3(0, 1, 0)
down Vector3(0, -1, 0)
16
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
10