Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Merge branch 'hotifix/v1.3.1' into main
Browse files Browse the repository at this point in the history
- Fix for sub domain not getting saved in setup guide
  • Loading branch information
rYuuk authored Jun 6, 2023
1 parent b3eb2ee commit 598965a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Editor/UI/EditorWindows/SetupGuideWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,11 @@ private void OnBackButton()

private void OnNextButton()
{
if (panels[currentPanelIndex] is SubdomainPanel)
{
var subdomainPanel = (SubdomainPanel) panels[currentPanelIndex];
subdomainPanel.SaveSubdomain();
}
currentPanelIndex++;
}

Expand Down
5 changes: 5 additions & 0 deletions Editor/UI/SetupGuidePanels/SubdomainPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,10 @@ public SubdomainPanel()

GUILayout.Space(10);
}

public void SaveSubdomain()
{
subdomainField.SaveSubdomain();
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.readyplayerme.avatarloader",
"version": "1.3.0",
"version": "1.3.1",
"displayName": "Ready Player Me Avatar Loader",
"description": "Avatar Loader is responsible for downloading, importing and preparing Ready Player Me avatars for use in editor and runtime.",
"unity": "2020.3",
Expand Down

0 comments on commit 598965a

Please sign in to comment.