2020-11-16 00:50:06 +11:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace UnityExplorer.Inspectors.Reflection
|
|
|
|
|
{
|
|
|
|
|
public class InteractiveNumber : InteractiveValue
|
|
|
|
|
{
|
2020-11-16 01:32:58 +11:00
|
|
|
|
public InteractiveNumber(object value, Type valueType) : base(value, valueType) { }
|
2020-11-16 00:50:06 +11:00
|
|
|
|
|
|
|
|
|
public override bool HasSubContent => false;
|
|
|
|
|
public override bool SubContentWanted => false;
|
|
|
|
|
public override bool WantInspectBtn => false;
|
|
|
|
|
|
|
|
|
|
public override void ConstructUI(GameObject parent, GameObject subGroup)
|
|
|
|
|
{
|
|
|
|
|
base.ConstructUI(parent, subGroup);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnValueUpdated()
|
|
|
|
|
{
|
|
|
|
|
base.OnValueUpdated();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|