UnityEngine.Vector3.Vector3 C# (CSharp) 메소드

Vector3() 공개 메소드

public Vector3 ( float x, float y, float z ) : System
x float
y float
z float
리턴 System
        public Vector3(float x, float y, float z)
        {
            this.x = x;
            this.y = y;
            this.z = z;
        }