UI update 02

This commit is contained in:
FloatGaming
2026-06-30 21:21:30 +08:00
parent b2a1e307a4
commit f62f643cfc
1666 changed files with 211081 additions and 22799 deletions
@@ -12,6 +12,7 @@ public class SongDataSerializable
public bool _if_level_is_EASE;
public int max_comboRecord;
public int personalRecord;
public int selectedDifficultyId;
public string dataHash; // 防篡改校验和
// public List<int> enemyList = new List<int>(); // Deprecated and removed
@@ -49,6 +50,7 @@ public class SongDataSerializable
this._if_level_is_EASE = source._if_level_is_EASE;
this.max_comboRecord = source.max_comboRecord;
this.personalRecord = source.personalRecord;
this.selectedDifficultyId = source.thisLevel_selectedDifficultyID;
// this.enemyList = new List<int>(source.enemyList); // Deprecated and removed
// 将字典转换为 List
@@ -72,6 +74,7 @@ public class SongDataSerializable
target._if_level_is_EASE = this._if_level_is_EASE;
target.max_comboRecord = this.max_comboRecord;
target.personalRecord = this.personalRecord;
target.thisLevel_selectedDifficultyID = this.selectedDifficultyId;
// target.enemyList = new List<int>(this.enemyList); // Deprecated and removed
// 将 List 还原回字典