UnityEngine.Vector4.Vector4 C# (CSharp) Method

Vector4() public method

construct a new vector4
public Vector4 ( float x, float y, float z, float w )
x float
y float
z float
w float
        public Vector4(float x, float y, float z, float w)
        {
            this.x = x;
            this.y = y;
            this.z = z;
            this.w = w;
        }

Same methods

Vector4::Vector4 ( float x, float y )
Vector4::Vector4 ( float x, float y, float z )