Save icon and saving

Hi,

So I have a save system and a saving icon which work fine and when an action takes place to save the game the icon displays. Is there a way to show the icon only when the game is actually saving as currently I have the flashing icon of my image to display and then hide after a delay as to only mimic the save action

Use AsyncSaveGameToSlot node. It has Completed exec node to notify you when it’s done, so that you can hide the icon. And you can show the icon when you execute this node. More info: Saving and Loading Your Game | Unreal Engine 4.27 Documentation

1 Like

Ah thankyou, I missed that node as I’ve been saving inside functions and you can’t use that there. I managed it by creating a custom event at the end of my save on the event graph. Works great :slight_smile:

1 Like