wrap actors of the same type of class in a common actor class

create your actor class, lets say MyActor
then create child actor classes (right click on it in editor and CreateChildClass) from that MyActorA, MyActorB

when you spawn a child class (MyActorA) save its return value as the parent (MyActor) to only have the common methods.

1 Like