justdecompile-plugins
justdecompile-plugins copied to clipboard
Plugin that finds visible empty methods
Hi, I created a plugin. It's not very interesting, but I find it useful, and it should be useful at least for other advanced Unity programmers like me. I hope it's welcome in your repository.
Hi @dogfuntom,
We've tested your plugin and we've found some problems:
- It doesn't work for assemblies compiled in debug, because of the
nop
instructions. - When assembly is reloaded, because the file in the file system has been changed, the plugin window doesn't refresh and shows invalid results.
- It doesn't search in nested types, if is not used explicitly on the nested type itself.
- Inconsistent result output - the plugin doesn't show the methods with the
internal
access modifier, but shows methods with all other access modifiers, incl.private
andprotected internal
. - It doesn't show virtual methods for some strange reason.
It would be very nice, if you fix these problems.
Thanks for your feedback, I didn't even remotely think about half of this cases to test. I shall fix these issues.