This repository was archived by the owner on May 9, 2023. It is now read-only.
UnityExplorer 4.1.2
- 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 suggestObject
, when previously this would be ignored.
- eg. typing
- 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 assomeClass.add
orif.foreach
(invalid) will now be highlighted correctly
- Keywords which end in non-delimiter symbols (eg
- 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)