/* * Previous gesture */ void Previous(string currentScene) { if (currentScene == "paintingScene") // if scene is paintingScene update color { ColorController.PreviousColor(); } else // if scene is sculptureScene update color { VisibilityController.PreviousModel(); } }