Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

UnityExplorer 4.1.2

Compare
Choose a tag to compare
@sinai-dev sinai-dev released this 01 Jun 06:46
· 405 commits to master since this release
  • The C# Console will now use whitespace as a delimiter for suggestions. Previously this was disabled because it would give suggestions when you're inside a string or comment, but that has been resolved using the LexerBuilder's string and comment lexers.
    • eg. typing if (someObject is Obje would now suggest Object, when previously this would be ignored.
  • Fixed some other minor issues with the CSConsole's handling of delimiters and whitespace:
    • Keywords which end in non-delimiter symbols (eg add_) will now be correctly ignored by the highlighter
    • A period . is no longer considered a delimiter by the highlighter. Cases such as someClass.add or if.foreach (invalid) will now be highlighted correctly
  • Added better time logging to the ReflectionUtility initialize methods, for those wondering why the game might freeze for a few seconds when UnityExplorer starts up (especially in IL2CPP)