FVector4 constructor

init

Constructs a new instance of FVector4

def __init__(self):
    ...

init

Initializes a new instance of the FVector4.

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

init

Initializes a new instance of the FVector4.

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

init

Initializes a new instance of the FVector4.

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

init

Initializes a new instance of the FVector4.

def __init__(self, x, y, z):
    ...
ParameterTypeDescription
xfloat
yfloat
zfloat

init

Initializes a new instance of the FVector4.

def __init__(self, x, y, z, w):
    ...
ParameterTypeDescription
xfloat
yfloat
zfloat
wfloat

See Also