We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85bf511 commit 6d2ad42Copy full SHA for 6d2ad42
Source/UnrealEnginePython/Private/UEPyModule.h
@@ -14,6 +14,9 @@
14
#include "Wrappers/UEPyFColor.h"
15
#include "Wrappers/UEPyFLinearColor.h"
16
17
+// returns true if the given UProperty is a function output parameter (some function parameters are incorrectly
18
+// marked as output parameters, but if they are also marked as const refs, then they are actually input parameters)
19
+#define PROP_IS_OUT_PARAM(prop) ((prop)->HasAllPropertyFlags(CPF_Parm|CPF_OutParm) && !(prop)->HasAllPropertyFlags(CPF_ReferenceParm|CPF_ConstParm))
20
21
22
UWorld *ue_get_uworld(ue_PyUObject *);
0 commit comments