Skip to content
This repository was archived by the owner on Feb 28, 2026. It is now read-only.

Latest commit

 

History

History
22 lines (15 loc) · 1.49 KB

File metadata and controls

22 lines (15 loc) · 1.49 KB

UdonSharpIDAP

IDA Processor for UdonSharp

I have always wanted to implement features like graph view and cross-reference in my UdonDisassembler so that I can better understand what the code does.

If you're just looking at some simple functions, that's fine, you can just read small snippets to understand what's going on. But once you hit the massive amount of code a large map has, it's hell.

So why not just use IDA? One of my most familiar tools and it already has all the features I need. Now here it is.

ida

NB

This is not a complete product, since I have 0 knowledge about IDA APIs, and personally I think the documentation and examples of IDA are not perfect enough, which adds a lot of understanding cost, it is currently only a very, very early version, it can't even understand one function, currently all it can do is disassemble a single instruction when you press C, and generate cross-references to the JUMP and JUMP_IF_FALSE (aka JNE) instructions. I also created a segment for Udon's heap and put all the All references to heap are redirected to that place.

I may continue to improve this processor in the future. Also hoping someone can read this and help me finish this processor.

Install & Usage

  1. Download udonsharp.py and put to <YOUR IDA INSTALL DIR>\procs
  2. Open IDA
  3. Load UdonSharp bytecode file
  4. Select Process UdonSharp Byte Code (search by udon)
  5. Keep all default and keep click OK