mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-01 11:12:49 +08:00
27 lines
769 B
C#
27 lines
769 B
C#
//using System;
|
|
//using System.Collections;
|
|
//using System.Collections.Generic;
|
|
//using System.Linq;
|
|
//using System.Text;
|
|
//using UnityExplorer.UI;
|
|
|
|
//namespace UnityExplorer.Inspectors.Reflection
|
|
//{
|
|
// public class CacheEnumerated : CacheObjectBase
|
|
// {
|
|
// public int Index { get; set; }
|
|
// public IList RefIList { get; set; }
|
|
// public InteractiveEnumerable ParentEnumeration { get; set; }
|
|
|
|
// public override bool CanWrite => RefIList != null && ParentEnumeration.OwnerCacheObject.CanWrite;
|
|
|
|
// public override void SetValue()
|
|
// {
|
|
// RefIList[Index] = IValue.Value;
|
|
// ParentEnumeration.Value = RefIList;
|
|
|
|
// ParentEnumeration.OwnerCacheObject.SetValue();
|
|
// }
|
|
// }
|
|
//}
|