public void OnChildSelect(UIScrollListChildNew <Model, View> child)
 {
     if (controllable && keyController != null)
     {
         View currentChild = this.currentChild;
         cursorIndex = currentChild.modelIndex - rollCount;
         ProcessSelect();
     }
 }
Exemple #2
0
        public void OnChildSelect(UIScrollListChildNew <Model, View> child)
        {
            if (!this.controllable || this.keyController == null)
            {
                return;
            }
            View currentChild = this.currentChild;

            this.cursorIndex = currentChild.modelIndex - this.rollCount;
            this.ProcessSelect();
        }