How to, you can assign it on a variable how to assign it as function parameter?
I don’t think you can, except in the very specific case of setting UnrealScript delegates to call from ActionScript.
1 Like
https://docs.unrealengine.com/udk/Three/UnrealScriptDelegates.html
I just looked deeper into it. You can send a function as an argument to another function. You can’t just send any function like
function function1(function function2)
{
function2();
}
You have to declare a delegate and then send a function that follows pattern set by the delegate.
1 Like
GREAT THAT WILL HELP oops caps.