Is there a Blueprint equivalent of commenting out a block of code? I want to have two different ways of doing the same thing in the same blueprint with only one being active at a time without having to rebuild the entire structure over again.
Is there any way to tell it, ignore this group and run that group?
It’s only for testing purposes and don’t want two blueprints to test with and keep switching back and forth which BP is being used if I can help it.
In context, this is controlling character movements and observing the differences between them. I’m already doing a similar thing with two entirely different characters, but one is working and the other is broken and trying to figure out where it’s broken by using BP elements of the working character without completely destroying the last few hours of additions to the broken character.
I’m hoping it can be done or I’ll have to duplicate the characterBP and make the changes there. Just seeing if there’s another way without doing that.