Why is my skeletal mesh component not showing up in owned components?

I did my search in the constructor of the actor, which obviously can’t work, since the constructor of the parent class is executed before the constructor of the blueprint. Thus the Skeletal mesh component did not yet exist at the time of search.

I now moved it to BeginPlay and it works.

1 Like