More progress, and change Aggressive Mouse Unlock behaviour

This commit is contained in:
Sinai
2021-04-29 21:01:08 +10:00
parent a2a2b09d33
commit dba9bdbdc2
22 changed files with 365 additions and 233 deletions

View File

@ -32,5 +32,17 @@ namespace UnityExplorer.UI.Inspectors.CacheObject
LastException = ex;
}
}
protected override void TrySetValue(object value)
{
try
{
FieldInfo.SetValue(FieldInfo.IsStatic ? null : ParentInspector.Target, value);
}
catch (Exception ex)
{
ExplorerCore.LogWarning(ex);
}
}
}
}