Hello. Is there a way to combine several Actor Components inside one to add them faster and don’t think that forgot anything? E.G., There are the Actor Components, after that the same logic will look as one Component.
No, actor components cannot own other actor components. You could make an actor with many components and add this actor as a child actor component. But that complicates things.
Perhaps you could spawn the comps dynamically?
Or play with inheritance. If the base class has some of the components, all children will also have them and can add some unique ones.