Hello Epic Devs,
i am currently making a saving system for my game’s setting menu using save slots.
Everything works fine for the first time but when i save twice all the settings get reset,i dont really understand whats causing this.
Hello Epic Devs,
i am currently making a saving system for my game’s setting menu using save slots.
Everything works fine for the first time but when i save twice all the settings get reset,i dont really understand whats causing this.
It’s because you’re overwriting the save game. You always have to read it in, update, then save…
Yes, you’re creating a new one there. So everything else gets chucked away… ![]()
On the face of it, it looks ok. But I see a couple of strange things
Your cast node should have a blue error on it. The fact that it doesn’t, says that this variable is not of the same type as your save game.
You go to the trouble of creating a save game, but then don’t set the bool in it
This is you only setting the bool in a previously saved save game.
Not very exciting, but might point you in the right direction ![]()