Skip to content

Commit 2adb8d7

Browse files
author
Roberto De Ioris
committed
fixed 4.16 build
1 parent 55c5c03 commit 2adb8d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/UnrealEnginePython/Private/Wrappers/UEPyFTransform.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ static PyObject *py_ue_ftransform_transform_position_no_scale(ue_PyFTransform *s
8282
return py_ue_new_fvector(self->transform.TransformPositionNoScale(py_vec->vec));
8383
}
8484

85-
#if ENGINE_MINOR_VERSION > 15
85+
#if ENGINE_MINOR_VERSION > 16
8686
static PyObject *py_ue_ftransform_transform_rotation(ue_PyFTransform *self, PyObject * args)
8787
{
8888
PyObject *py_obj;
@@ -120,7 +120,7 @@ static PyMethodDef ue_PyFTransform_methods[] = {
120120
{ "transform_vector_no_scale", (PyCFunction)py_ue_ftransform_transform_vector_no_scale, METH_VARARGS, "" },
121121
{ "transform_position", (PyCFunction)py_ue_ftransform_transform_position, METH_VARARGS, "" },
122122
{ "transform_position_no_scale", (PyCFunction)py_ue_ftransform_transform_position_no_scale, METH_VARARGS, "" },
123-
#if ENGINE_MINOR_VERSION > 15
123+
#if ENGINE_MINOR_VERSION > 16
124124
{ "transform_rotation", (PyCFunction)py_ue_ftransform_transform_rotation, METH_VARARGS, "" },
125125
#endif
126126
{ NULL } /* Sentinel */

0 commit comments

Comments
 (0)