diff --git a/.github/latest.md b/.github/latest.md index 2f21c3df..041b17a7 100644 --- a/.github/latest.md +++ b/.github/latest.md @@ -1,6 +1,18 @@ ## Changelog +### Updated + +- XR animation avatars now have DOF enabled by default [#288](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/288) +- Updated InCreatorAvatarLoader to use avatar config [#286](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/286) +- Avatar Creator Icon categories updated [#272](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/272) + ### Fixed -- Updated XR template prefab meshes to prevent missing bone references to fix mexh transfer [#266](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/266) \ No newline at end of file +- Fixed an issue preventing LOD's from updating [#277](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/277) +- An issue causing multiple signup requests [#275](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/275) + +### Added +- Avatar template type filter [#270](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/270) +- Handle failed body shape requests [#281](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/281) +- Option to filter Templates by gender [#273](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/273) \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 335ee6e4..3820e606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,29 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [6.3.0] - 2024.06.11 + +### Updated + +- XR animation avatars now have DOF enabled by default [#288](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/288) +- Updated InCreatorAvatarLoader to use avatar config [#286](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/286) +- Avatar Creator Icon categories updated [#272](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/272) + +### Fixed + +- Fixed an issue preventing LOD's from updating [#277](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/277) +- An issue causing multiple signup requests [#275](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/275) + +### Added +- Avatar template type filter [#270](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/270) +- Handle failed body shape requests [#281](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/281) +- Option to filter Templates by gender [#273](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/273) + ## [6.2.4] - 2024.05.03 ### Fixed -- Updated XR template prefab meshes to prevent missing bone references to fix mexh transfer [#266](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/266) +- Updated XR template prefab meshes to prevent missing bone references to fix mesh transfer [#266](https://github.com/readyplayerme/rpm-unity-sdk-core/pull/266) ## [6.2.3] - 2024.04.29 diff --git a/Editor/Core/Scripts/Analytics/Constants.cs b/Editor/Core/Scripts/Analytics/Constants.cs index f5d4dc94..34ffbe01 100644 --- a/Editor/Core/Scripts/Analytics/Constants.cs +++ b/Editor/Core/Scripts/Analytics/Constants.cs @@ -64,7 +64,7 @@ public static class Links { public const string DOCS_PARTNERS_LINK = "https://docs.readyplayer.me/ready-player-me/what-is-ready-player-me#url"; public const string DOCS_DEFER_AGENT_LINK = "https://docs.readyplayer.me/ready-player-me/integration-guides/unity/optimize/defer-agents"; - 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_LOADER_WINDOW = "https://docs.readyplayer.me/ready-player-me/integration-guides/unity/avatar-loader-window"; 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/Core/Scripts/UI/EditorWindows/SettingsWindow/SettingsEditor.cs b/Editor/Core/Scripts/UI/EditorWindows/SettingsWindow/SettingsEditor.cs index 08e00630..5793f9ea 100644 --- a/Editor/Core/Scripts/UI/EditorWindows/SettingsWindow/SettingsEditor.cs +++ b/Editor/Core/Scripts/UI/EditorWindows/SettingsWindow/SettingsEditor.cs @@ -21,7 +21,7 @@ public class SettingsEditor : EditorWindow private const string LOGGING_ENABLED_TOGGLE = "LoggingEnabledToggle"; private const string DOCUMENTATION_BUTTON = "DocumentationButton"; private const string FAQ_BUTTON = "FaqButton"; - private const string DISCORD_BUTTON = "DiscordButton"; + private const string FORUM_BUTTON = "ForumButton"; private const string CLEAR_CACHE = "Clear Cache"; private const string CACHE_IS_ALREADY_EMPTY = "Cache is already empty"; private const string OK = "OK"; @@ -39,7 +39,7 @@ public class SettingsEditor : EditorWindow private const string DOCS_URL = "https://docs.readyplayer.me/ready-player-me/integration-guides/unity"; private const string FAQ_URL = "https://docs.readyplayer.me/ready-player-me/integration-guides/unity/faq-for-unity"; - private const string DISCORD_URL = "https://bit.ly/UnitySDKDiscord"; + private const string FORUM_URL = "https://forum.readyplayer.me/"; private const string PRIVACY_POLICY_LABEL = "PrivacyPolicyLabel"; [SerializeField] private VisualTreeAsset visualTreeAsset; @@ -94,7 +94,7 @@ public void CreateGUI() rootVisualElement.Q