Hi, I don’t know what happened but somehow the follow camera got removed from the camera boom, and now I’m spawning in the void without the character showing or anything else. If I try to put back the component it says “The selected component is inherited and cannot be reordered here.” How do I fix this?
Hey @Athuo135! Seems like your blueprint is based on a C++ class. So you won’t be able to adjust the hierarchy of the components from the editor.
To attach the camera component to the spring arm, all you need to do is this:
FollowCamera->SetupAttachment(CameraBoom);
If nothing changes after adding this code to your cpp file and compiling it, try closing the editor and building the project from VS.
Hope this helps!