FVector4 constructor

__init__(self)

Constructs a new instance of FVector4


def __init__(self):
    ...

__init__(self, vec)

Initializes a new instance of the FVector4.


def __init__(self, vec):
    ...
ParameterTypeDescription
vecVector4

__init__(self, vec)

Initializes a new instance of the FVector4.


def __init__(self, vec):
    ...
ParameterTypeDescription
vecVector3

__init__(self, vec, w)

Initializes a new instance of the FVector4.


def __init__(self, vec, w):
    ...
ParameterTypeDescription
vecVector3
wfloat

__init__(self, x, y, z)

Initializes a new instance of the FVector4.


def __init__(self, x, y, z):
    ...
ParameterTypeDescription
xfloatX component
yfloatY component
zfloatZ component

__init__(self, x, y, z, w)

Initializes a new instance of the FVector4.


def __init__(self, x, y, z, w):
    ...
ParameterTypeDescription
xfloatX component
yfloatY component
zfloatZ component
wfloatW component

See Also