コード例 #1
0
        /** [シングルトン]constructor
         */
        private Ui()
        {
            //フォーカス。
            this.focus = new Focus();

            //ウィンドウリスト。
            this.windowlist = new Ui_WindowList();

            //target_list
            this.target_list = new System.Collections.Generic.LinkedList <Fee.Ui.OnTarget_CallBackInterface>();

            //target_add_list
            this.target_add_list = new System.Collections.Generic.List <Fee.Ui.OnTarget_CallBackInterface>();

            //target_remove_list
            this.target_remove_list = new System.Collections.Generic.List <Fee.Ui.OnTarget_CallBackInterface>();

            //ウィンドウレジュームリスト。
            this.windowresumelist = new Ui_WindowResumeList();

            //ダウン中ボタンインスタンス。
            this.down_button_instance = null;

            //プールリスト。
            this.pool_list_sprite_clip = new Pool.PoolList <Sprite2D_Clip>(0);
        }
コード例 #2
0
        /** [シングルトン]constructor
         */
        private Ui()
        {
            //ウィンドウリスト。
            this.windowlist = new Ui_WindowList();

            //target_list
            this.target_list = new System.Collections.Generic.LinkedList <Fee.Ui.OnTarget_CallBackInterface>();

            //target_add_list
            this.target_add_list = new System.Collections.Generic.List <Fee.Ui.OnTarget_CallBackInterface>();

            //target_remove_list
            this.target_remove_list = new System.Collections.Generic.List <Fee.Ui.OnTarget_CallBackInterface>();

            //ウィンドウレジュームリスト。
            this.windowresumelist = new Ui_WindowResumeList();

            //ダウン中ボタンインスタンス。
            this.down_button_instance = null;

            //プールリスト。
            this.pool_list_sprite_clip = new Pool.PoolList <Sprite_Clip>(0);

            //PlayerLoopType
            this.playerloop_flag = true;
            Fee.PlayerLoopSystem.PlayerLoopSystem.GetInstance().Add(Config.PLAYERLOOP_ADDTYPE, Config.PLAYERLOOP_TARGETTYPE, typeof(PlayerLoopType.Fee_Ui_Main), this.Main);
        }
コード例 #3
0
        /** constructor
         */
        public TextList()
        {
            //list
            this.list = new System.Collections.Generic.List <Text2D>();

            //pool_list
            this.pool_list = new Fee.Pool.PoolList <Text2D>(0);

            //sortend_flag
            this.sortend_flag = true;

            //calc_index_request_flag
            this.calc_index_request_flag = true;

            //sort_request_flag
            this.sort_request_flag = true;

            //delete_request_flag
            this.delete_request_flag = true;
        }