Unity built-in package resolving information collection #358
Replies: 8 comments 7 replies
-
Right now I am investigating what kind of web requests Unity sends to determine built-in packages. |
Beta Was this translation helpful? Give feedback.
-
When pressing the "Refresh" button in the package manager, Unity first sends a GET request to |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Found the origin I think. There seems to be a "root manifest" which can be found on Linux at {
"schemaVersion": 4,
"packages": {
"com.unity.collections": {
"isDiscoverable": true,
"mustBeBundled": true,
"version": "1.2.4",
"minimumVersion": "1.2.4"
},
"com.unity.entities": {
"isDiscoverable": true
},
"com.unity.netcode": {
"isDiscoverable": true
},
// ...
}
} After removing |
Beta Was this translation helpful? Give feedback.
-
Each version contains only one file: |
Beta Was this translation helpful? Give feedback.
-
I tried removing the |
Beta Was this translation helpful? Give feedback.
-
Just downloaded a fresh |
Beta Was this translation helpful? Give feedback.
-
I am currently in the process of investigating how built-in package resolution works in Unity. I will share my findings here.
Beta Was this translation helpful? Give feedback.
All reactions