UnityEngine.Vector4.Vector4 C# (CSharp) Method

Vector4() public method

public Vector4 ( float x, float y, float z )
x float
y float
z float
        public Vector4(float x, float y, float z)
        {
            this.x = x;
            this.y = y;
            this.z = z;
            w = 0.0f;
        }

Same methods

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