Skip to content

Commit

Permalink
FIXED: UProperty is now FProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
avivazran authored May 22, 2020
1 parent af3c869 commit b57a0bd
Show file tree
Hide file tree
Showing 34 changed files with 5,065 additions and 5,065 deletions.
1,620 changes: 810 additions & 810 deletions Source/UnrealEnginePython/Private/Blueprint/UEPyEdGraph.cpp

Large diffs are not rendered by default.

72 changes: 36 additions & 36 deletions Source/UnrealEnginePython/Private/Blueprint/UEPyEdGraph.h
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
Loading

0 comments on commit b57a0bd

Please sign in to comment.