|
1 | | -#pragma once |
2 | | - |
3 | | - |
4 | | - |
5 | | -#include "UEPyModule.h" |
6 | | -#include "UEPyCallable.h" |
7 | | - |
8 | | -#include "UEPyEdGraphPin.h" |
9 | | - |
10 | | -#if WITH_EDITOR |
11 | | -PyObject *py_ue_graph_add_node_call_function(ue_PyUObject *, PyObject *); |
12 | | -PyObject *py_ue_graph_add_node_custom_event(ue_PyUObject *, PyObject *); |
13 | | -PyObject *py_ue_graph_add_node_variable_get(ue_PyUObject *, PyObject *); |
14 | | -PyObject *py_ue_graph_add_node_variable_set(ue_PyUObject *, PyObject *); |
15 | | -PyObject *py_ue_graph_add_node(ue_PyUObject *, PyObject *); |
16 | | -PyObject *py_ue_graph_add_node_dynamic_cast(ue_PyUObject *, PyObject *); |
17 | | -PyObject *py_ue_graph_add_node_event(ue_PyUObject *, PyObject *); |
18 | | - |
19 | | -PyObject *py_ue_graph_reconstruct_node(ue_PyUObject *, PyObject *); |
20 | | -PyObject *py_ue_graph_remove_node(ue_PyUObject *, PyObject *); |
21 | | - |
22 | | -PyObject *py_ue_graph_get_good_place_for_new_node(ue_PyUObject *, PyObject *); |
23 | | - |
24 | | -PyObject *py_ue_node_pins(ue_PyUObject *, PyObject *); |
25 | | -PyObject *py_ue_node_find_pin(ue_PyUObject *, PyObject *); |
26 | | -PyObject *py_ue_node_create_pin(ue_PyUObject *, PyObject *); |
27 | | - |
28 | | -PyObject *py_ue_node_pin_type_changed(ue_PyUObject *, PyObject *); |
29 | | -PyObject *py_ue_node_pin_default_value_changed(ue_PyUObject *, PyObject *); |
30 | | - |
31 | | -PyObject *py_ue_node_function_entry_set_pure(ue_PyUObject *, PyObject *); |
32 | | - |
33 | | -PyObject *py_ue_node_get_title(ue_PyUObject *, PyObject *); |
34 | | -PyObject *py_ue_node_allocate_default_pins(ue_PyUObject *, PyObject *); |
35 | | -PyObject *py_ue_node_reconstruct(ue_PyUObject *, PyObject *); |
36 | | -#endif |
| 1 | +#pragma once |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | +#include "UEPyModule.h" |
| 6 | +#include "UEPyCallable.h" |
| 7 | + |
| 8 | +#include "UEPyEdGraphPin.h" |
| 9 | + |
| 10 | +#if WITH_EDITOR |
| 11 | +PyObject *py_ue_graph_add_node_call_function(ue_PyUObject *, PyObject *); |
| 12 | +PyObject *py_ue_graph_add_node_custom_event(ue_PyUObject *, PyObject *); |
| 13 | +PyObject *py_ue_graph_add_node_variable_get(ue_PyUObject *, PyObject *); |
| 14 | +PyObject *py_ue_graph_add_node_variable_set(ue_PyUObject *, PyObject *); |
| 15 | +PyObject *py_ue_graph_add_node(ue_PyUObject *, PyObject *); |
| 16 | +PyObject *py_ue_graph_add_node_dynamic_cast(ue_PyUObject *, PyObject *); |
| 17 | +PyObject *py_ue_graph_add_node_event(ue_PyUObject *, PyObject *); |
| 18 | + |
| 19 | +PyObject *py_ue_graph_reconstruct_node(ue_PyUObject *, PyObject *); |
| 20 | +PyObject *py_ue_graph_remove_node(ue_PyUObject *, PyObject *); |
| 21 | + |
| 22 | +PyObject *py_ue_graph_get_good_place_for_new_node(ue_PyUObject *, PyObject *); |
| 23 | + |
| 24 | +PyObject *py_ue_node_pins(ue_PyUObject *, PyObject *); |
| 25 | +PyObject *py_ue_node_find_pin(ue_PyUObject *, PyObject *); |
| 26 | +PyObject *py_ue_node_create_pin(ue_PyUObject *, PyObject *); |
| 27 | + |
| 28 | +PyObject *py_ue_node_pin_type_changed(ue_PyUObject *, PyObject *); |
| 29 | +PyObject *py_ue_node_pin_default_value_changed(ue_PyUObject *, PyObject *); |
| 30 | + |
| 31 | +PyObject *py_ue_node_function_entry_set_pure(ue_PyUObject *, PyObject *); |
| 32 | + |
| 33 | +PyObject *py_ue_node_get_title(ue_PyUObject *, PyObject *); |
| 34 | +PyObject *py_ue_node_allocate_default_pins(ue_PyUObject *, PyObject *); |
| 35 | +PyObject *py_ue_node_reconstruct(ue_PyUObject *, PyObject *); |
| 36 | +#endif |
0 commit comments