menu
This commit is contained in:
@@ -29,13 +29,15 @@ namespace Ichni.Menu
|
||||
{
|
||||
if(song.difficultyDataList.All(d => d.difficultyName != "Easy"))
|
||||
{
|
||||
song.difficultyDataList.Add(new DifficultyData(0, "Easy","", 0, "",
|
||||
song.difficultyDataList.Add(new DifficultyData(
|
||||
0, "Easy","Easy", 0, "",
|
||||
new Color(0f, 0.7f, 0.2f, 1f)));
|
||||
}
|
||||
|
||||
if (song.difficultyDataList.All(d => d.difficultyName != "Hard"))
|
||||
{
|
||||
song.difficultyDataList.Add(new DifficultyData(1,"Hard", "", 0, "",
|
||||
song.difficultyDataList.Add(new DifficultyData(
|
||||
1,"Hard", "Hard", 0, "",
|
||||
new Color(1f, 0.2f, 0.2f, 1f)));
|
||||
}
|
||||
}
|
||||
@@ -75,6 +77,9 @@ namespace Ichni.Menu
|
||||
|
||||
[FoldoutGroup("$songName")]
|
||||
public List<DifficultyData> difficultyDataList;
|
||||
|
||||
[FoldoutGroup("$songName")]
|
||||
public string unlockKey;
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
|
||||
Reference in New Issue
Block a user