Example #1
0
        void _process()
        {
            if ( count < total ) {
                _command = _commandList[count];

                UXEventDelegate.AddListener( _command, UXEventData.onComplete, _commandOnComplete );

                _command.Execute();
            }
            else {
                done();
            }
        }
Example #2
0
        public CommandList InsertRange( int index, Command[] commands )
        {
            InsertRange( index, new List<Command>( commands ) );

            return this;
        }
Example #3
0
        public CommandList AddRange( Command[] commands )
        {
            AddRange( new List<Command>( commands ) );

            return this;
        }