TimerSaves

I wanted to make a TimerSave, my timer is working is fine but when i want to save it, it saves nothing and when I restart the timer in my level it just starts from zero even tough My actor is supposed to save it

my save actor code:-

my timer widget code:-

Way too small, can you make the screenshots bigger?.. :slight_smile:

save actor code

Timer code

1 Like

Two points I noticed. This

image

Does nothing. You can’t have a delay on tick, it has no effect.

Second area is

On component begin overlap is very flakey, it triggers many times for one overlap. Using onbegin overlap is much more reliable. Also, deleting the save game is not a good idea. Once you’ve made it ( once ), you only need to read it, update, and save.

Here’s my save game 101:

so if I add ‘do once’ node after begin overlap will it work?, and I remove the delete game node will it save my variables?