Bypass saving certain actors in editor?

As DamirH suggested, actually the best way to achieve this is to make sure any instances have the RF_Transient flag. This ensures they will never get saved.

You can add this as a class flag if you wish:

UCLASS(Transient)
class ATemporaryActor ...
1 Like