Skip to content

Commit

Permalink
Merge pull request #3 from yoshidan/feature/packaging
Browse files Browse the repository at this point in the history
Feature/packaging
  • Loading branch information
yoshidan authored May 17, 2021
2 parents 7c0a9c7 + 2b13327 commit f75b988
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Assets/UniBT/Scripts/Editor/UniBT.Editor.asmdef
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "UniBT.Editor",
"references": [
"UniBT"
],
"optionalUnityReferences": [],
"includePlatforms": [
"Editor"
],
"excludePlatforms": []
}
7 changes: 7 additions & 0 deletions Assets/UniBT/Scripts/Editor/UniBT.Editor.asmdef.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions Assets/UniBT/Scripts/Runtime/UniBT.asmdef
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "UniBT",
"references": [],
"optionalUnityReferences": [],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": []
}
7 changes: 7 additions & 0 deletions Assets/UniBT/Scripts/Runtime/UniBT.asmdef.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Assets/UniBT/Scripts/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "com.github.yoshidan.unibt",
"displayName": "UniBT",
"version": "1.0.0",
"unity": "2019.1",
"description": "Behavior tree designer.",
"dependencies": {}
}
7 changes: 7 additions & 0 deletions Assets/UniBT/Scripts/package.json.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,18 @@ I will provide easily customizable and free designer.

## Get Started

1. [Download](https://github.com/yoshidan/UniBT/releases) and install unity package.
1. [Download](https://github.com/yoshidan/UniBT/releases) and install unity package.
Also the package can also be imported with Package Manager, by adding the following entry in your `Packages/manifest.json`:
```json
{
"dependencies": {
...
"com.github.yoshidan.unibt": "https://github.com/yoshidan/UniBT.git?path=Assets/UniBT/Scripts"
}
}
```


2. Add `UniBT.BehaviorTree` component for any GameObject.
<img src="images/started1.jpg" width="240"/>
3. `Open Graph Editor` button opens GraphView for Behavior Tree.
Expand Down

0 comments on commit f75b988

Please sign in to comment.