From e0111f1e00e607612e90d98f2fb83cadb2475485 Mon Sep 17 00:00:00 2001 From: Harrison Hough Date: Wed, 1 Nov 2023 15:57:46 +0200 Subject: [PATCH] chore: add extra app id link --- Editor/Analytics/Constants.cs | 1 + Editor/UI/EditorWindows/Templates/AppIdTemplate.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Editor/Analytics/Constants.cs b/Editor/Analytics/Constants.cs index af7ad3e9..73b4373b 100644 --- a/Editor/Analytics/Constants.cs +++ b/Editor/Analytics/Constants.cs @@ -68,6 +68,7 @@ public static class Links public const string DOCS_LOAD_AVATAR = "https://docs.readyplayer.me/ready-player-me/integration-guides/unity/load-avatars#save-avatars-as-npcs-in-your-project"; public const string DOCS_AVATAR_CONFIG_LINK = "https://docs.readyplayer.me/ready-player-me/integration-guides/unity/optimize/avatar-configuration"; public const string DOCS_AVATAR_CACHING = "https://docs.readyplayer.me/ready-player-me/integration-guides/unity/optimize/avatar-caching"; + public const string APP_ID = "https://docs.readyplayer.me/ready-player-me/integration-guides/unity/avatar-creator/custom-avatar-creator#prerequisites"; } } } diff --git a/Editor/UI/EditorWindows/Templates/AppIdTemplate.cs b/Editor/UI/EditorWindows/Templates/AppIdTemplate.cs index 768ae134..cf500cbc 100644 --- a/Editor/UI/EditorWindows/Templates/AppIdTemplate.cs +++ b/Editor/UI/EditorWindows/Templates/AppIdTemplate.cs @@ -36,7 +36,7 @@ public AppIdTemplate() private static void OnAppIdHelpClicked() { AnalyticsEditorLogger.EventLogger.LogFindOutMore(HelpSubject.Subdomain); - Application.OpenURL(Constants.Links.DOCS_PARTNERS_LINK); + Application.OpenURL(Constants.Links.APP_ID); } private void OnAppIdFocusOut(FocusOutEvent _)