chore: add AutoSave package
This commit is contained in:
parent
e866893a96
commit
91b1cf1458
8
Assets/Imported Assets/EckTechGames.meta
generated
Normal file
8
Assets/Imported Assets/EckTechGames.meta
generated
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9cb4eae38e78b96c1aded20946dffd1f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
8
Assets/Imported Assets/EckTechGames/AutoSave.meta
generated
Normal file
8
Assets/Imported Assets/EckTechGames/AutoSave.meta
generated
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3e5b9e7445bea014eac44683e2490c31
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
8
Assets/Imported Assets/EckTechGames/AutoSave/Editor.meta
generated
Normal file
8
Assets/Imported Assets/EckTechGames/AutoSave/Editor.meta
generated
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ee28603b1c9985f40a5652508503db2f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -0,0 +1,45 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
11
Assets/Imported Assets/EckTechGames/AutoSave/Editor/AutoSaveExtension.cs.meta
generated
Normal file
11
Assets/Imported Assets/EckTechGames/AutoSave/Editor/AutoSaveExtension.cs.meta
generated
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 07f267af4dcecd5449d8c996902d7f0b
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
6
Assets/Scenes/SampleScene.unity
generated
6
Assets/Scenes/SampleScene.unity
generated
@ -394,7 +394,7 @@ MonoBehaviour:
|
||||
m_Script: {fileID: 11500000, guid: 2669b7102c53f757b82f593178e49647, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
_initialRewardMultiplier: 1
|
||||
_initialRewardMultiplier: 500
|
||||
_maxRewardMultiplier: 128
|
||||
_initialMaxExperience: 3
|
||||
_uiManager: {fileID: 1676064789}
|
||||
@ -1224,8 +1224,8 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||
m_AnchoredPosition: {x: 0, y: -0.73}
|
||||
m_SizeDelta: {x: 450, y: 560.93}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 450, y: 500}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &624579874
|
||||
MonoBehaviour:
|
||||
|
Loading…
Reference in New Issue
Block a user