TypedTree Generator
Tool for generating scheme files for the typedtree-editor. Repository: https://github.com/bastianblokland/typedtree-generator-unity
com.typedtree.generator 
Install via UPM
Add to Unity Package Manager using this URL
https://www.pkglnk.dev/generator.git README Markdown
Copy this to your project's README.md
## Installation
Add **TypedTree Generator** to your Unity project via Package Manager:
1. Open **Window > Package Manager**
2. Click **+** > **Add package from git URL**
3. Enter:
```
https://www.pkglnk.dev/generator.git
```
[](https://www.pkglnk.dev/pkg/generator)README
TypedTree-Generator-Unity
Unity package tool for generating treescheme files for use in the TypedTree-editor
Description
To avoid having to handwrite treescheme files you can generate them based on the c# class structure of your tree (for example a behaviour tree structure).
The scheme files produced can be used to edit tree's in a visual way using the website.
Installation
Add a reference to this repository to your package dependencies (
Packages/manifest.json)"dependencies": { "com.typedtree.generator": "https://github.com/BastianBlokland/typedtree-generator-unity.git#v1.2.1", ... }Add the NuGet dependency to your project.
If your project uses a NuGet package manager you can simply add a dependency to TypedTree.Generator.Core.
If you are not using a NuGet package manager you can simply copy the dll's from the
.libdirectory to your project.
Usage
- Create a
Generatorscriptable-object. (Right mouse the project window ->Create/TypedTree/Generator) - In the
Root Alias Typefield of the generator configure what type (interface,class, orstruct) to use as the base of your tree. - In the
Field Sourcefield of the generator configure where the generator should look for fields on nodes. - In the
Output Pathfield of the generator configure where to output the scheme json. (Relative to theAssetsdirectory)
Example
An example of how to integrate this package with unity project can be found in the .example directory.
Help
More information about the generator library: typedtree-generator-dotnet
More information about the editor: typedtree-editor
No comments yet. Be the first!