Documentation

Learn how to use NodeCanvas

Creating Custom Object Drawers

Custom Object and Attribute Drawers work very similar to Unity’s Property Drawers feature and with it, it is possible to customize how a certain object (class/struct) appears in all NodeCanvas inspectors, as well as create GUI for custom attributes.

Object Drawers

Let’s suppose we have this example struct (it could also be a class of course).

To create a custom drawer for this object, you simply need to create a class and derive from the generic version of ObjectDrawer, then implement the OnGUI method. For example:

The instance parameter of the OnGUI method above is always of type T. By the end of the OnGUI method you must return the modified instance (this is why a struct was chosen for this example).

That’s it. The drawer will work exactly the same for fields of BBParameter<MyExampleStruct> as well. Both are shown below.

ObjectDrawer

Attribute Drawers

For this example, we are going to re-create a Range(min, max) attribute. So let’s first create the attribute, with the only requirement being that it has to derive from DrawerAttribute.

Then to create the actual GUI drawer for this attribute, in short, you need to create a class and derive from the generic version of AttributeDrawer. Much similar on how it was done before for ObjectDrawer. In this case, the T argument represents the type of the attribute we need to create the drawer for. The instance here is always of type object. The inherited ‘attribute’ property returns our attribute which we can use to fetch its meta data. No casting is required here since our attribute is of type T. It is always a good idea to check what type the field actually is by checking the inherited property ‘fieldInfo.FieldType’. Because multiple attributes may be used on the same field, it is advised to return MoveNextDrawer() by the end in case the attribute did not actually draw or returned anything. Following is how the drawer implementation of our MyRangeAttribute should ideally look like.

Finally, we simply add this new attribute above a float, or even a BBParameter<float>. It will work exactly the same. Both are shown below.

AttributeDrawer

Yes No Suggest edit
14 of 16 users found this section helpful
Suggest Edit