readyplayerme / rpm-unity-sdk-core

This Module contains all the core functionality required for using Ready Player Me avatars in Unity, including avatar loading and creation
MIT License
97 stars 33 forks source link

404 error on "Check for Updates" #40

Closed Paul-Auguste closed 1 year ago

Paul-Auguste commented 1 year ago

Describe the bug By clicking on the "Check For Updates" button it returns me a 404 error.

Failed to fetch com.readyplayerme.core releases. Error: HTTP/1.1 404 Not Found UnityEngine.Debug:Log (object) ReadyPlayerMe.Core.Editor.ModuleUpdater/<FetchReleases>d__9:MoveNext () (at Library/PackageCache/com.readyplayerme.core@39d3c866dc/Editor/Module Management/ModuleUpdater.cs:88) UnityEngine.UnitySynchronizationContext:ExecuteTasks () (at /Users/bokken/buildslave/unity/build/Runtime/Export/Scripting/UnitySynchronizationContext.cs:107)

To Reproduce Steps to reproduce the behavior:

  1. Install the core module
  2. Click on "Check For Updates"

Mac Editor :

HarrisonHough commented 1 year ago

Thanks for reporting this issue!

Can you check the manifest.json in your project? I believe this issue was caused by the changed of repository names. You should be able to fix by either manually updating the URL's of the modules in there image

or you a clean install of the latest core module should also fix. I can add this to the docs But after a clean install of Unity Core 0.1.1 this should no longer occur.

Paul-Auguste commented 1 year ago

That was exactly this.

Fixed it by modifying : "com.readyplayerme.core": "https://github.com/readyplayerme/Unity-core.git" into "com.readyplayerme.core": "https://github.com/readyplayerme/rpm-unity-sdk-core.git#v0.1.1"

Thanks !