I have a base blueprint Ship
.
- I have created a child class blueprint out of this named
Ship_1
. - I have added a new custom actor component
Mover
toShip_1
. - I have made some changes to this
Mover
component. - Now I realize that I need to
Mover
component be also present in baseShip
blueprint
Question is, how can to apply this Mover
component into the parent Ship
blueprint?
As I have already setup a lot of properties on this component.
I come from Unity, so there its easy as I can just Apply this added component to parent prefab, but here I dont see any option like this, but it seems such a basic functionality.