BS 0.1 基础构建完成 / 0.2 Visual 同为Unity UI控件部分
This commit is contained in:
24
Convention/[ES3]/Easy Save 3/Scripts/Settings/ES3Defaults.cs
Normal file
24
Convention/[ES3]/Easy Save 3/Scripts/Settings/ES3Defaults.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class ES3Defaults : ScriptableObject
|
||||
{
|
||||
[SerializeField]
|
||||
public ES3SerializableSettings settings = new ES3SerializableSettings();
|
||||
|
||||
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;
|
||||
[Tooltip("Folders listed here will be searched for references every time the reference manager is refreshed. Path should be relative to the project folder.")]
|
||||
public string[] referenceFolders = new string[0];
|
||||
|
||||
public bool logDebugInfo = false;
|
||||
public bool logWarnings = true;
|
||||
public bool logErrors = true;
|
||||
}
|
Reference in New Issue
Block a user