Пример #1
0
        private bool touchUp()
        {
            ULog.print(TAG, "touchUp");
            isDraging = false;

            return(false);
        }
Пример #2
0
        /**
         * 全ての描画オブジェクト情報を出力する
         */
        public void showAllList(bool ascending, bool isShowOnly)
        {
            // カレントページのリストを取得
            SortedDictionary <int, DrawList> lists = mDrawList;

            ULog.print(TAG, " ++ showAllList ++");

            IOrderedEnumerable <KeyValuePair <int, DrawList> > descendingList =
                lists.OrderByDescending(selector =>
            {
                DrawList list = lists[selector.Key];

                ULog.print(TAG, " + priority:" + list.getPriority());
                list.showAll(ascending, isShowOnly);

                return(selector.Key);
            });
        }
Пример #3
0
 /**
  * for Debug
  */
 /**
  * 描画オブジェクトをすべて出力する
  * @param isShowOnly  画面に表示中のもののみログを出力する
  */
 public void showAll(bool ascending, bool isShowOnly)
 {
     if (!ascending)
     {
         list.Reverse();
     }
     foreach (UDrawable obj in list)
     {
         if (!isShowOnly || obj.isShow)
         {
             String objStr = obj.ToString();
             ULog.print(UDrawManager.TAG, objStr + " isShow:" + obj.isShow);
         }
     }
     if (!ascending)
     {
         list.Reverse();
     }
 }