Пример #1
0
 /*
  *  Next gesture
  */
 void Next(string currentScene)
 {
     if (currentScene == "paintingScene")           // if scene is paintingScene update color
     {
         ColorController.NextColor();
     }
     else             // if scene is sculptureScene update color
     {
         VisibilityController.NextModel();
     }
 }