Is it possible to call a blueprint function from python?

You need to do:

  • Wrap a function in another function
  • Expose inputs in args/kwargs.

In my example I wrapped AddMeshSections function in AddMeshSectionsPy function.
After that I called this function from Python:

my_actor.call_method("AddMeshSectionsPy", args=(my_array, ))

1 Like