mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-03 03:52:28 +08:00
Fix SubContentWanted for InteractiveDictionary, remove redundant IValueTypes enum/dict
This commit is contained in:
@ -11,11 +11,8 @@ namespace UnityExplorer.Inspectors.Reflection
|
||||
{
|
||||
public class InteractiveBool : InteractiveValue
|
||||
{
|
||||
public InteractiveBool(object value, Type valueType) : base(value, valueType)
|
||||
{
|
||||
}
|
||||
public InteractiveBool(object value, Type valueType) : base(value, valueType) { }
|
||||
|
||||
public override IValueTypes IValueType => IValueTypes.Bool;
|
||||
public override bool HasSubContent => false;
|
||||
public override bool SubContentWanted => false;
|
||||
public override bool WantInspectBtn => false;
|
||||
|
Reference in New Issue
Block a user