mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-15 13:57:31 +08:00
Remove Mono restriction on generic type eligibility
This commit is contained in:
parent
12c51248fe
commit
b47bfa1e83
@ -253,7 +253,7 @@ namespace UnityExplorer.Hooks
|
||||
|
||||
ClassSelectorInputField = UIFactory.CreateInputField(addRow, "ClassInput", "Enter a class to add hooks to...");
|
||||
UIFactory.SetLayoutElement(ClassSelectorInputField.Component.gameObject, flexibleWidth: 9999, minHeight: 25, flexibleHeight: 0);
|
||||
TypeCompleter completer = new(typeof(object), ClassSelectorInputField, true, false, Universe.Context != UniverseLib.Runtime.RuntimeContext.IL2CPP);
|
||||
TypeCompleter completer = new(typeof(object), ClassSelectorInputField, true, false, true);
|
||||
//completer.AllTypes = true;
|
||||
|
||||
ButtonRef addButton = UIFactory.CreateButton(addRow, "AddButton", "View Methods");
|
||||
|
Loading…
x
Reference in New Issue
Block a user