Example #1
0
        private void OnAccessCallback(DebugGroup group)
        {
            int length = list.Count;

            for (int i = 0; i < length; i++)
            {
                int index = i;
                Add(new DebugBool(index.ToString(), list[index], (value) => list[index] = value));
            }
        }
Example #2
0
        private void OnAccessCallback(DebugGroup group)
        {
            int length = array.Length;

            for (int i = 0; i < length; i++)
            {
                int index = i;
                Add(new DebugBool(index.ToString(), array[index], (value) => array[index] = value));
            }
        }
Example #3
0
 private void OnExitCallback(DebugGroup group)
 {
     Clear();
 }