Skip to content

Commit

Permalink
PostSong goes to Song Selection
Browse files Browse the repository at this point in the history
  • Loading branch information
JayDiddyThaGOAT committed May 12, 2023
1 parent 98e7348 commit 466640b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Assets/Scenes/MenuScene.unity
Original file line number Diff line number Diff line change
Expand Up @@ -12427,7 +12427,7 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 874813134}
m_TargetAssemblyTypeName: YARG.UI.MainMenu, Assembly-CSharp
m_MethodName: ShowMainMenu
m_MethodName: ShowSongSelect
m_Mode: 1
m_Arguments:
m_ObjectArgument: {fileID: 0}
Expand Down Expand Up @@ -16964,7 +16964,7 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 874813134}
m_TargetAssemblyTypeName: YARG.UI.MainMenu, Assembly-CSharp
m_MethodName: ShowMainMenu
m_MethodName: ShowSongSelect
m_Mode: 1
m_Arguments:
m_ObjectArgument: {fileID: 0}
Expand Down
4 changes: 2 additions & 2 deletions Assets/Script/UI/PostSong.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private void OnDisable() {
private void Update() {
// Enter
if (Keyboard.current.enterKey.wasPressedThisFrame) {
MainMenu.Instance.ShowMainMenu();
MainMenu.Instance.ShowSongSelect();
}
}

Expand All @@ -121,7 +121,7 @@ private void OnGenericNavigation(NavigationType navigationType, bool pressed) {
}

if (navigationType == NavigationType.PRIMARY) {
MainMenu.Instance.ShowMainMenu();
MainMenu.Instance.ShowSongSelect();
}
}
}
Expand Down

0 comments on commit 466640b

Please sign in to comment.