General
- Blueprint nodes execution are slower than C++ code.
- Pure nodes are executed each time they are used (they don’t cache the outputs like a impure node).
- Blueprint
For loop
is very slow because for each iteration it does a copy of the current entry. - Inputs and outputs of nodes (pure, impure and Make/Break) are copied.
Resources
More details