I’ve got some BP code I’ve been converting to C++, and the most needlessly painful thing is replacing the variable references.
If I want to replace a BP variable with a C++ variable, so far as I can tell, I’ve actually got to go through each and every place it’s used and unhook the BP variable, and hook in the C++ variable.
I’ve tried “replace references” but the c++ base class just doesn’t appear on the list.
I’m working by switching over the BP variables in the BP functions, and then making C++ functions that do the same things with the same variables.
Is there some quick and easy way of swapping variables I’m missing?