EP 0.1.1 Symbolization

This commit is contained in:
2025-06-30 00:11:48 +08:00
parent 75f9615c70
commit f814daed46
67 changed files with 513 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
using Convention.EasySave;
namespace Convention.EasySave
{
public class EasySaveDefaults
{
public EasySaveSettings settings = new EasySaveSerializableSettings();
public bool addMgrToSceneAutomatically = false;
public bool autoUpdateReferences = true;
public bool addAllPrefabsToManager = true;
public int collectDependenciesDepth = 4;
public int collectDependenciesTimeout = 10;
public bool updateReferencesWhenSceneChanges = true;
public bool updateReferencesWhenSceneIsSaved = true;
public bool updateReferencesWhenSceneIsOpened = true;
public string[] referenceFolders = new string[0];
public bool logDebugInfo = false;
public bool logWarnings = true;
public bool logErrors = true;
}
}