Activate / Deactivate Actors with set visible?

I would like to toggle between some actors. In that other engine I used to use, there was an “Activate property” that could be set via script, or even in the editor.

The only similar thing I was able to find in UE4 are the set visible / toggle visible blueprint nodes. However I wonder if this visibility setting will also deactivate all calculations done in the objects Blueprint, if it is not longer visible, or if there is any other way to quickly deactivate anything associated with one actor blueprint?

Just toggling it to invisible only stops the engine showing the object, everything is still running, and obviously you still have collision etc.

If you want to make sure nothing’s going on in the BP, just turn the tick off:

tick.JPG

Thank you very much. This is good to know!