Another question about saving scope:
I have two character classes, AMainCharacter
and AEnemy
which both use the same actor component member variable. But I would like to only save this member for the AMainCharacter
but not for AEnemy
.
If I add that actor component class to the scope of the save slot, it saves for both, the AMainCharacter
and AEnemy
, even though AEnemy
is not saved as it is not in the actor scope.