You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,18 @@ See upcoming features and development progress on the [Trello Board](https://tre
20
20
21
21
## Getting Started
22
22
23
-
Grab the latest `*.unitypackage` from the [releases page](https://github.com/ashblue/fluid-behavior-tree/releases).
23
+
Fluid Behavior Tree is used through [Unity's Package Manager](). 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.
24
+
25
+
```json
26
+
{
27
+
"registry": "https://registry.npmjs.org",
28
+
"dependencies": {
29
+
"com.fluid.behavior-tree": "0.0.0"
30
+
}
31
+
}
32
+
```
33
+
34
+
Archives of specific versions and release notes are available on the [releases page](https://github.com/ashblue/fluid-behavior-tree/releases).
0 commit comments