Skip to content

Add the Udon type exposure tree view and bug fixes

Choose a tag to compare

@MerlinVR MerlinVR released this 03 Mar 09:14
· 1257 commits to master since this release

This release adds a basic tool that's mostly only going to be used if you want to know what members from a type are exposed or not exposed. You can open this tool by opening Window > Udon Sharp > Class Exposure Tree. Right clicking on items will allow you to copy the Udon extern strings that they'd correspond to.

Features:

Bug fixes:

  • a9c4d87: Add support for implicit casting of indexer inputs to integers, reported by @Foorack
  • 2e8d35d: Fix issue with method resolution not finding constructors with 0 parameters, reported by @Foorack
  • 2e8d35d: Fix issues with the type resolver not resolving some types and methods correctly. This should now have full coverage on the types and methods that Udon currently exposes with the exception of Func and Action accessors which aren't accessible from the graph editor at the moment.
  • d14979c: Fix unary minus operator implicit conversion to higher precision types, reported by @Foorack