Access Blueprint Function Library in C++

Yes: BFL_Test::PublicMethod( ... ).

All functions in a function library should be static, so you have to call them that way (with the :: scope operator instead of with -> using an instance of the class).

2 Likes