I have a TSubclassOf<class AInventoryActor> actorType; and would like to set it to whatever class is currently the child of AInventoryActor. Is that possible?
AInventoryActor : AActor
-actorType = AInventoryActor
AStaticMeshActor : AInventoryActor
-actorType = AStaticMeshActor
ASword : AStaticMeshActor
-actorType = ASword
AInventoryActor : AActor
-actorType = AInventoryActor
AStaticMeshActor : AInventoryActor
-actorType = AStaticMeshActor
ASword : AStaticMeshActor
-actorType = ASword
Comment