HOW TO SEE c++ CODE FOR BLUEPRINT WHICH WE HAVE WRITTEN

i developed one application in unreal engine using blueprint. I want to see the C++ code for that blueprint which i have created ,how to see that.
can anyone please help me to know

I have this saved in my notes, never tried so cant confirm it works.

Edit → Editor Preferences → Keyboard Shortcuts → Search for Generate native Code → Assign a key bind → Go to a random BP in your project press the keybind, generate your BP in C++ code → You can go and read that user friendly code files (the last part is a joke).

Blueprints can’t be converted to good readable C++ code afaik.

The Engine converts it to C++ in the packaging stage.

Hello abhikeshri,

Blueprints don’t generate C++ code by default. Actually, they are used to generate scripts. These scripts then rely on a Virtual Machine to pipe everything into Unreal Engine. The idea behind Blueprints is to really give non-programmers a way to make games, or for artists / programmers an easy way to work together.

However, tools are in the works which will convert Blueprints to C++:

Thanks,
Jon N.