Ejemplo n.º 1
0
		public static CCFiniteTimeAction ActionWithDuration(float t)
        {
            var fadeout = new CCFadeOutBLTiles(t, new CCGridSize(16, 12));
            var back = fadeout.Reverse();
            var delay = new CCDelayTime (0.5f);

			return new CCSequence(fadeout, delay, back);
        }
Ejemplo n.º 2
0
        public LabelSystemFont168()
        {

            Color = new CCColor3B(200, 191, 231);
            Opacity = 255;

            fadeOut = new CCFadeOutBLTiles(1f, new CCGridSize(10, 10));

            Schedule(StressIt, 2.0f);
        }
Ejemplo n.º 3
0
 public CCFadeOutBLTilesState(CCFadeOutBLTiles action, CCNodeGrid target) : base(action, target)
 {
 }
Ejemplo n.º 4
0
 public CCFadeOutBLTilesState (CCFadeOutBLTiles action, CCNode target) : base (action, target)
 {
 }