BS 0.0.1 EasySave初步

This commit is contained in:
ninemine
2025-06-27 19:51:53 +08:00
parent 5aa5998d22
commit e5bc6a2592
60 changed files with 8785 additions and 29 deletions

View File

@@ -0,0 +1,18 @@
public class EasySaveDefaults
{
public EasySaveSerializableSettings 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;
}