MCPcopy Create free account
hub / github.com/20tab/UnrealEnginePython / SetPyCallable

Method SetPyCallable

Source/UnrealEnginePython/Public/PythonDelegate.cpp:9–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7}
8
9void UPythonDelegate::SetPyCallable(PyObject *callable)
10{
11 // do not acquire the gil here as we set the callable in python call themselves
12 py_callable = callable;
13 Py_INCREF(py_callable);
14}
15
16void UPythonDelegate::SetSignature(UFunction *original_signature)
17{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected