I am working on a game that uses the character movement component to move around. Everything was working fine until I either pressed control z or accidentally clicked the “Edit in C++” link connected to a component in the components tab. Now my details panel on all components that have the “Edit in C++” option show nothing in Details. I am strictly working with blueprints. I have verified my unreal launcher. I have opened and closed the game. I’m not sure what else to do. Is there a way to get my details panel to show details again?
Try resetting the ui.
From the main editor window toolbar select:
Window => Load Layout => Default Editor Layout.
That did not seem to work for me.
If you have “Edit in C++” in your class then that element of the actor was already converted to a C++ class.
Now that your project is converted to C++ you need to run your project from the generated solution file through your coding IDE. The compiler should compile your classes and the detail panel should show all elements.
You probably tried running it like a blueprint project through the uproject file skipping the compile process and maybe causing the class to break.