Saved game won't load actors

save game: [save game posted by anonymous | blueprintUE | PasteBin For Unreal Engine]
load game: [load game posted by anonymous | blueprintUE | PasteBin For Unreal Engine]

it saves without a problem but when loading it only loads the player and the barrel but not the drills

You can’t save actors, what you should do instead is save information about them like actor class, health etc you can make this into a struct for example, when you load the save you can spawn the actor and then apply all the information about them that you saved, like location, health etc.

2 Likes

thanks for the idea, i have figured it out what i did is when saving the game if there is a save that already exist i delete the save and create a new one (it spawned all the actors that was saved for previous saves) and when loading i remove all the actors and spawned new ones from the array and set the variables
[save game posted by anonymous | blueprintUE | PasteBin For Unreal Engine]
[load game posted by anonymous | blueprintUE | PasteBin For Unreal Engine]