Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Dumble009/UnityEditorTreeGraph
This is Unity Editor Extension which allows you to create Behaviour Trees with GUI Editor.
https://github.com/Dumble009/UnityEditorTreeGraph
behaviourtree editor-extension unity
Last synced: about 2 months ago
JSON representation
This is Unity Editor Extension which allows you to create Behaviour Trees with GUI Editor.
- Host: GitHub
- URL: https://github.com/Dumble009/UnityEditorTreeGraph
- Owner: Dumble009
- License: mit
- Created: 2019-11-05T14:05:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-23T06:06:56.000Z (over 4 years ago)
- Last Synced: 2024-08-03T05:15:56.330Z (5 months ago)
- Topics: behaviourtree, editor-extension, unity
- Language: C#
- Homepage:
- Size: 560 KB
- Stars: 20
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UnityEditorTreeGraph
![](https://imgur.com/SkJGTSh.png)Writing routines of characters or enemies is tiresome work...
This Editor Extension relieve you of such painful works!# Introduction
Writing code of specific behaviour(such as "transform.position += transform.forward;", "animator.SetTrigger("Attack");") is easy. But writing code of abstract behaviour(such as "Chase the player then attack") is difficult.
With UETG, You can create abstract behaviour of characters without writing redundant "if else if if...".
Abstract behaviours created by UETG don't depend on specific behaviours, so you can attach same abstract behaviour to different characters.
Please see example scenes for more details!The code which UETG exports is not deterministic. You can create your own compiler of the graph. If you change the compiler of the graph, the exported code will be changed. With a proper compiler, UETG can export MonoBehaviour codes, DOTS code, js codes, lua codes and so on!
Do you want to test your code? UETG can export test codes with GUI!
![](https://imgur.com/Q9ZWJbH.png)