KeepItUp/Assets/Imported Assets/EckTechGames/AutoSave/Editor/AutoSaveExtension.cs
2022-07-25 22:27:58 +03:00

45 lines
1.5 KiB
C#

using System;
using UnityEditor;
using UnityEditor.SceneManagement;
using UnityEngine;
namespace EckTechGames.AutoSave
{
/// <summary>
/// This static class registers the autosave methods when playmode state changes
/// in the editor.
/// </summary>
[InitializeOnLoad]
static class AutoSaveExtension
{
/// <summary>
/// Static constructor that gets called when Unity fires up or recompiles the scripts.
/// (triggered by the InitializeOnLoad attribute above)
/// </summary>
static AutoSaveExtension()
{
// Normally I'm against defensive programming, and this is probably
// not necessary. The intent is to make sure we don't accidentally
// subscribe to the playModeStateChanged event more than once.
EditorApplication.playModeStateChanged -= AutoSaveWhenPlaymodeStarts;
EditorApplication.playModeStateChanged += AutoSaveWhenPlaymodeStarts;
}
/// <summary>
/// This method saves open scenes and other assets when entering playmode.
/// </summary>
/// <param name="playModeStateChange">The enum that specifies how the playmode is changing in the editor.</param>
private static void AutoSaveWhenPlaymodeStarts(PlayModeStateChange playModeStateChange)
{
// If we're exiting edit mode (entering play mode)
if(playModeStateChange == PlayModeStateChange.ExitingEditMode)
{
Debug.Log("EckTechGames.AutoSave - Saving Scenes and Assets");
// Save the open scenes and any assets.
EditorSceneManager.SaveOpenScenes();
AssetDatabase.SaveAssets();
}
}
}
}