Problem loading variables from save game to game instance at game start in c++

this line will cause you problems




TArray<bool> TempChest, TempLegs, TempFace, TempHands, TempHair, TempBeard, TempEyebrows;


Make them seperate then they will each get the bool in the TArray.

These will work
EXAMPLE:



TArray<bool> TempChest;
TArray<bool> TempLegs;
TArray<bool> TempFace;
TArray<bool> TempHands;
TArray<bool> TempHair;
TArray<bool> TempBeard;
TArray<bool> TempEyebrows;


Rest looks like it should work, once you fix the defines.