Static Mesh Components don't appear in the Blueprint

Hi,

When I add a static mesh using the “Add Static Mesh Component” node in a for loop, the mesh appears in the world, but not in the components tab. I tried attaching them to the Blueprint (actor), but that still doesn’t make them appear anywhere else than the world view.

This is what the construction script in the Blueprint looks like:

As you can see the yellow box is the outlined cube. There are multiple cubes in the world that are spawned by this Blueprint, but they don’t appear in the components tab or world hierarchy.

You should access dynamically added components with appropriate variables.

If you want to edit them in editor - add it manually, not by code.

I ended up making a Blueprint out of the mesh and spawning them in the Event Graph based on the same method.