mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-14 15:46:36 +08:00
1.31
- various performance improvements - by default, lists and arrays are now collapsed, use the "v" button to expand them. - added error handling for a TypeLoadException which can happen with some generic types.
This commit is contained in:
@ -91,7 +91,8 @@ namespace Explorer
|
||||
{
|
||||
var obj = m_searchResults[i];
|
||||
|
||||
UIStyles.DrawValue(ref obj, _temprect);
|
||||
bool _ = false;
|
||||
UIStyles.DrawValue(ref obj, _temprect, ref _);
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -262,7 +263,6 @@ namespace Explorer
|
||||
{
|
||||
var findType = CppExplorer.GetType(_type);
|
||||
type = Il2CppSystem.Type.GetType(findType.AssemblyQualifiedName);
|
||||
MelonLogger.Log("Got type: " + type.AssemblyQualifiedName);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
Reference in New Issue
Block a user