加入用户最近100场战绩记录并实现展示
This commit is contained in:
@@ -65,6 +65,7 @@ public class notebookController : MonoBehaviour
|
||||
{
|
||||
if (initialized) return;
|
||||
initialized = true;
|
||||
StoreOwnershipLedger.EnsureInstance().InitializeIfNeeded();
|
||||
LoadAllData();
|
||||
categoryToggles = new[]
|
||||
{
|
||||
|
||||
@@ -42,4 +42,17 @@ public class notebook_faterType : ScriptableObject
|
||||
|
||||
[Header("Son Lists")]
|
||||
public List<notebook_sonClass> sonList = new List<notebook_sonClass>();
|
||||
}
|
||||
|
||||
public void SetUnlocked(bool value)
|
||||
{
|
||||
if (isUnlocked == value)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
isUnlocked = value;
|
||||
#if UNITY_EDITOR
|
||||
EditorUtility.SetDirty(this);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user