Example #1
0
 void RemovingElementsAnimation()
 {
     for (int i = 0; i < combinations.Count(); i++)
     {
         MyAnimation.OpacityAnimation(
             candies[Int32.Parse("" + combinations[i][1]), Int32.Parse("" + combinations[i][0])].img, true);
     }
 }
Example #2
0
 void CreateNewCandy(int row, int column)
 {
     candies[row, column].Change(rand);
     MyAnimation.OpacityAnimation(candies[row, column].img, false);
 }