Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseWhether this is the default, Unity registry or one of the scoped registries configured in the project manifest.
The default registry hosts the standard Unity packages. The Package Manager always looks for packages in the default registry unless a project manifest contains one or more scoped registries. When a manifest declares a scoped registry, the Package Manager uses the scope to determine whether to look for a package in that registry. You can configure scoped registries inside a scopedRegistries
element of your Project manifest file. All configured registries must support the npm protocol.
{ "scopedRegistries": [ { "name": "RoboCo", "url": "https://roboco.example.com/npm/packages/", "scopes": [ "com.roboco", "com.roboco.experimental"] } ], "dependencies": { "com.unity.cinemachine": "1.0.0", "com.roboco.experimental.physics": "0.0.1", "com.roboco.utilities": "1.0.0" } }