Migration to v0.4.0

circle-exclamation

Migration Guide

  • Grab the latest U# release herearrow-up-right and import that first!

  • Create a new empty scene and open it

  • Click File -> Save Project

  • Remove the UdonToolkit folder completely while you are in that test scene

  • Import the new UdonToolkit and wait for everything to compile

  • Open Edit -> Project Settings -> UdonSharp and in the Default Behaviour Editor select UdonToolkit Editor

  • Open your scene again and everything should work as expected

circle-exclamation

You will notice a Legacy folder inside UdonToolkit now which hosts all the old controllers and the legacy editor

Controller Migration Guide

circle-info

You can take a look at all the U# behaviours in the Misc folder to see how you can use UdonToolkit now

Starting with v0.4.0 you don't need controllers anymore, and you can use all the UdonToolkit's attributes directly in the U# code!

There are some small differences mainly centered around Udon's limited support for things like Enums and cases where you want to perform some complex editor logic.

All variables that you want to use UdonToolkit attributes with must have a [UTEditor] attribute on them that is last in the group

This is due to some limitations of unity PropertyDrawers that do not allow proper modifier stacking

circle-info

Popup attribute now has new udon-friendly versions that use string names instead of Enums

More examples in the Popup attribute documentationarrow-up-right

triangle-exclamation

It is pretty rare that you'll have to use #if, but sometimes its unavoidable, especially when you want to use things like OnValueChangedarrow-up-right attribute.

Basically the logic behind this is as follows: you should use #if !COMPILER_UDONSHARP && UNITY_EDITOR if:

  • You want to work with methods and types not exposed to udon

  • You want to execute some logic in editor outside of playmode

In other cases - you should never need #if around your attribute related code

As usual, check behaviours in the Misc folder as a reference to how things should be built. UniversalAction is a good overall example.

Last updated