| 117 | } |
| 118 | |
| 119 | PyObject *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 | |
| 133 | PyObject *py_ue_set_view_target(ue_PyUObject * self, PyObject * args) { |
| 134 |
nothing calls this directly
no test coverage detected