UnityEngine.Vector3.Vector3 C# (CSharp) Method

Vector3() public method

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