Let’s say I have a switch statement that has executable nodes hooked up for each of the cases. However the argument passed to the switch statement is knowable at compile time. Will the compiler prune the superfluous nodes?
I read this “prunes any nodes that are unscheduled or not a data dependency” in the Blueprint Compiler Overview documentation.
Many Thanks