FVector2 constructor

__init__(self)

Constructs a new instance of FVector2


def __init__(self):
    ...

__init__(self, vec)

Initializes a new instance of the FVector2.


def __init__(self, vec):
    ...
ParameterTypeDescription
vecVector2Vector2 in double type

__init__(self, x, y)

Initializes a new instance of the FVector2.


def __init__(self, x, y):
    ...
ParameterTypeDescription
xfloatX component of the vector
yfloatY component of the vector

See Also