Unclaimed Package Is this your package? Claim it to unlock full analytics and manage your listing.
Claim This Package

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

Style
Preview
pkglnk installs badge
## 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
```

[![pkglnk](https://www.pkglnk.dev/badge/generator.svg?style=pkglnk)](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

  1. 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",
        ...
    }
    
  2. 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 .lib directory to your project.

Usage

  1. Create a Generator scriptable-object. (Right mouse the project window -> Create/TypedTree/Generator)
  2. In the Root Alias Type field of the generator configure what type (interface, class, or struct) to use as the base of your tree.
  3. In the Field Source field of the generator configure where the generator should look for fields on nodes.
  4. In the Output Path field of the generator configure where to output the scheme json. (Relative to the Assets directory)

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

Comments

No comments yet. Be the first!