IL2CPP List/Dict support, cleanups

This commit is contained in:
Sinai
2021-05-17 21:48:39 +10:00
parent 7dbf694642
commit d7b0fff949
7 changed files with 117 additions and 95 deletions

View File

@ -62,6 +62,9 @@ namespace UnityExplorer.UI.Inspectors
addChildInput.Text = "";
addCompInput.Text = "";
TransformTree.Clear();
ComponentList.Clear();
}
public override void CloseInspector()

View File

@ -19,6 +19,11 @@ namespace UnityExplorer.UI.Inspectors
base.OnCellClicked = OnComponentClicked;
}
public void Clear()
{
this.currentEntries.Clear();
}
private bool CheckShouldDisplay(Component _, string __) => true;
public override void OnCellBorrowed(ComponentCell cell)