forked from akanyan/mu3-mods
feat(SortByInternal): add sort2
This commit is contained in:
@ -4,9 +4,10 @@ namespace MU3;
|
||||
|
||||
public class patch_Scene_32_PrePlayMusic_MusicSelect: Scene_32_PrePlayMusic_MusicSelect {
|
||||
private static patch_MusicSort1ID[] _sort1SettingList;
|
||||
private static MusicSort2ID[] _sort2SettingList;
|
||||
private extern void orig_Awake();
|
||||
|
||||
private void Awake() {
|
||||
private new void Awake() {
|
||||
_sort1SettingList = new[] {
|
||||
patch_MusicSort1ID.Genre,
|
||||
patch_MusicSort1ID.All,
|
||||
@ -18,6 +19,18 @@ public class patch_Scene_32_PrePlayMusic_MusicSelect: Scene_32_PrePlayMusic_Musi
|
||||
patch_MusicSort1ID.InternalLevel
|
||||
};
|
||||
|
||||
_sort2SettingList = new[] {
|
||||
MusicSort2ID.Recommend,
|
||||
MusicSort2ID.BattlePoint,
|
||||
MusicSort2ID.TechnicalScore,
|
||||
MusicSort2ID.BossLevel,
|
||||
MusicSort2ID.Name,
|
||||
MusicSort2ID.AddDate,
|
||||
MusicSort2ID.Chapter,
|
||||
MusicSort2ID.Level
|
||||
//, MusicSort2ID.Lamp
|
||||
};
|
||||
|
||||
orig_Awake();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user