Skip to content

Unity Builtin Drawers

Latest
Compare
Choose a tag to compare
@alelievr alelievr released this 14 Jul 14:44
· 8 commits to upm since this release

This release adds builtin support for unity drawers. That allows you to directly use UnityActions or reorderable list with having a custom node view.

Example with the list node:

[System.Serializable, NodeMenuItem("Custom/List")]
public class ListNode : BaseNode
{
	public List<GameObject>		objs = new List<GameObject>();

	public override string		name => "List";

	protected override void Process()
	{
	}
}

Automatic view:

image