Inheritance: CCActionInterval
示例#1
0
        protected override CCAction reverseImpl()
        {
            CCAction act = new CCSpawn(_one.reverse(), _two.reverse());

            return(act);
        }
示例#2
0
        protected override CCAction copyImpl()
        {
            CCAction act = new CCSpawn(_one.copy(), _two.copy());

            return(act);
        }
示例#3
0
        public static CCActionFiniteTime ActionWithOneTwo(CCActionFiniteTime one, CCActionFiniteTime two)
        {
            CCSpawn act = new CCSpawn(one, two);

            return(act);
        }
示例#4
0
		protected override CCAction reverseImpl ()
		{
			CCAction act = new CCSpawn (_one.reverse (), _two.reverse ());
			return act;
		}
示例#5
0
		protected override CCAction copyImpl ()
		{
			CCAction act = new CCSpawn (_one.copy(), _two.copy());
			return act;
		}
示例#6
0
		public static CCActionFiniteTime ActionWithOneTwo(CCActionFiniteTime one, CCActionFiniteTime two){
			CCSpawn act = new CCSpawn(one, two);
			return act;
		}