Calling BP Graph Functions
How to call a function declared in the Blueprint Editor

asset_instance.call_method("function")
Last updated
How to call a function declared in the Blueprint Editor

asset_instance.call_method("function")
Last updated
asset_instance.call_method("function", args=("inputs_as_a_tuple",))
asset_instance.call_method("function", kwargs={"arg": "value"})value = asset_instance.call_method("function_with_return")asset_instance = unreal.new_object(asset.generated_class())
# or
default_object = unreal.get_default_object(asset.generated_class())