Hello,
I want to get rid of unused scripts on our project. I had a hope that Managed code stripping would log out what this function deletes, so we could manually decrease the number of scripts in our project to make it work faster on the editor (as recompilation time is so long already). Is there any smart way to mass-find unused scripts?
There are “find unused assets” type tools all over the web, and some for-pay stuff on the asset store.
I will note that removing a handful of scripts is unlikely to change your compile times meaningfully.
I really do like your idea of a log of what got stripped though… that seems like it would be extremely useful in general.
No “unused assets” can find scripts well, any tool available looks only for scripts not attached to any prefab/gameobject yet not usage between another code classes. This is why Managed Code Stripping log would do the job.
So question remains - is there a log what managed code-stripping removes? Especially important to review when serializing from/to json and using reflection. So we don’t get weird surprises
@GloriaVictis and @Kurt-Dekker there seems to be a log on what has been removed. More info here :