Skip to content

Commit 041f1ff

Browse files
committed
docs(readme): registry example moved to scoped registries
1 parent 19dd266 commit 041f1ff

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,19 @@ See upcoming features and development progress on the [Trello Board](https://tre
2020

2121
## Getting Started
2222

23-
Fluid Behavior Tree is used through [Unity's Package Manager](https://docs.unity3d.com/Manual/CustomPackages.html). In order to use it you'll need to add the following two lines to your `Packages/manifest.json` file. After that you'll be able to visually control what specific version of Fluid Behavior Tree you're using from the package manager window in Unity.
23+
Fluid Behavior Tree is used through [Unity's Package Manager](https://docs.unity3d.com/Manual/CustomPackages.html). In order to use it you'll need to add the following lines to your `Packages/manifest.json` file. After that you'll be able to visually control what specific version of Fluid Behavior Tree you're using from the package manager window in Unity. This has to be done so your Unity editor can connect to NPM's package registry.
2424

2525
```json
2626
{
27-
"registry": "https://registry.npmjs.org",
27+
"scopedRegistries": [
28+
{
29+
"name": "NPM",
30+
"url": "https://registry.npmjs.org",
31+
"scopes": [
32+
"com.fluid"
33+
]
34+
}
35+
],
2836
"dependencies": {
2937
"com.fluid.behavior-tree": "2.0.1"
3038
}

0 commit comments

Comments
 (0)