Ever get around to it? “Viewport click to reveal in explorer” is one feature Dex had that I miss dearly. Awesome tool otherwise
This reminds me a lot of Dark Dex/Dex that exploiters use. This is a handy adoption for developers instead
Are there any updates to this? I kind of want to use this for a game I work on.
This is really cool! Memory problems aside, I can see myself using it to inspect whatever shenanigans have happened and gone wrong on my games lol.
I recommend checking the developer console for memory leaks, for example instances that are not destroyed. It can be cleared by unparenting, but if a table still references it in its keys or values, it cannot be collected by the gc, hence why it still exists. Upvalues can indicate that it’s stored somewhere up the recorded location.