Artemis.ViewModels.Abstract.EffectViewModel.SaveSettings C# (CSharp) Method

SaveSettings() public method

public SaveSettings ( ) : void
return void
        public void SaveSettings()
        {
            EffectSettings?.Save();
            if (!EffectEnabled)
                return;

            // Restart the effect if it's currently running to apply settings.
            MainManager.EffectManager.ChangeEffect(EffectModel);
        }