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