Hi,
I am working on integrating a static code analyzer solution that runs in editor. I already have the diagnose info with file and line number and I would like when it is displayed in console to take me to that particular line of code.
Already tried to mimic the syntax of the existing compiler message but with no results: filename(line:column): message
I am aware of UnityEditorInternal.InternalEditorUtility.OpenFileAtLineExternal which works but I couldn’t find a way to hook to the log entry click event.
Any help would be greatly appreciated,
Thank you.