private bool touchUp() { ULog.print(TAG, "touchUp"); isDraging = false; return(false); }
/** * 全ての描画オブジェクト情報を出力する */ 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); }); }
/** * 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(); } }