forked from 20tab/UnrealEnginePython
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
5,065 additions
and
5,065 deletions.
There are no files selected for viewing
1,620 changes: 810 additions & 810 deletions
1,620
Source/UnrealEnginePython/Private/Blueprint/UEPyEdGraph.cpp
Large diffs are not rendered by default.
Oops, something went wrong.
72 changes: 36 additions & 36 deletions
72
Source/UnrealEnginePython/Private/Blueprint/UEPyEdGraph.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
#pragma once | ||
|
||
|
||
|
||
#include "UEPyModule.h" | ||
#include "UEPyCallable.h" | ||
|
||
#include "UEPyEdGraphPin.h" | ||
|
||
#if WITH_EDITOR | ||
PyObject *py_ue_graph_add_node_call_function(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_custom_event(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_variable_get(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_variable_set(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_dynamic_cast(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_event(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_graph_reconstruct_node(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_remove_node(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_graph_get_good_place_for_new_node(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_node_pins(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_find_pin(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_create_pin(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_node_pin_type_changed(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_pin_default_value_changed(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_node_function_entry_set_pure(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_node_get_title(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_allocate_default_pins(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_reconstruct(ue_PyUObject *, PyObject *); | ||
#endif | ||
#pragma once | ||
|
||
|
||
|
||
#include "UEPyModule.h" | ||
#include "UEPyCallable.h" | ||
|
||
#include "UEPyEdGraphPin.h" | ||
|
||
#if WITH_EDITOR | ||
PyObject *py_ue_graph_add_node_call_function(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_custom_event(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_variable_get(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_variable_set(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_dynamic_cast(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_add_node_event(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_graph_reconstruct_node(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_graph_remove_node(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_graph_get_good_place_for_new_node(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_node_pins(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_find_pin(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_create_pin(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_node_pin_type_changed(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_pin_default_value_changed(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_node_function_entry_set_pure(ue_PyUObject *, PyObject *); | ||
|
||
PyObject *py_ue_node_get_title(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_allocate_default_pins(ue_PyUObject *, PyObject *); | ||
PyObject *py_ue_node_reconstruct(ue_PyUObject *, PyObject *); | ||
#endif |
Oops, something went wrong.