I have implemented a default drawer for MonoBehaviours and ScriptableObjects that use UI Toolkit so that I can use UI Toolkit PropertyDrawers instead of relying on making many custom editors.
One thing I have notices is that the default element used for MonoScript properties isn’t clickable. The IMGUI implementation allows for clicking of the disabled script name to select the script in the project, and double clicking it will launch the editor (VS in my case).
Is this a knows issue or limitation? My plan right now is to wrap up a IMGUI property so I can get that functionality back quickly and move on with development.