Stopping Snapshot in UE4

Hello,

Im triggering a snapshot in UE4 that accompanies a menu pop-up (widget), it should unload when the menu is closed.
Play Event 2D successfully loads the snapshot and as the title suggests I am struggling to unload it fruthre down the BP.
I have seen other threads suggesting unticking Autoplay and using stop event intance, im not sure im getting it. My question would be: What is the specific set of instructions to stop a snapshot?

Thanks

Snapshots can be stopped using Studio::EventInstance::stop on the EventInstance returned by the function.

The Autoplay option will start the Snapshot immediately and also release the instance, but the returned EventInstance will still be valid until it is stopped. After that it will no longer be valid.

1 Like

Thank you for the explanation!