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

Function py_ue_has_world

Source/UnrealEnginePython/Private/UEPyWorld.cpp:119–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117}
118
119PyObject *py_ue_has_world(ue_PyUObject *self, PyObject * args) {
120
121 ue_py_check(self);
122
123 UWorld *world = ue_get_uworld(self);
124 if (!world) {
125 Py_INCREF(Py_False);
126 return Py_False;
127 }
128
129 Py_INCREF(Py_True);
130 return Py_True;
131}
132
133PyObject *py_ue_set_view_target(ue_PyUObject * self, PyObject * args) {
134

Callers

nothing calls this directly

Calls 1

ue_get_uworldFunction · 0.85

Tested by

no test coverage detected