I’m looking for guidance on how to convert a Blueprint-only project in Unreal Engine 5 to a C++ project using the command line. Also, how can I compile the project afterward? I want to put these into a bat file.
Any help or suggestions would be greatly appreciated!
Blueprints are automatically compiled into c++, however there is an option if you right click on a BP class to “show generated header” or something like that it automatically makes the .h file
I mean I want to convert the blueprint-only project into a C++ project. In the editor, I can do this by adding a new C++ class using the toolbar, but now I want to achieve this via the command line instead of opening the editor. And then compile the project using command line after this.