Ejemplo n.º 1
0
 //switches from the drawing ui to the gallery
 public void draw_to_gallery()
 {
     exit_UI();
     drawing_canvas.SetActive(false);
     gallery_canvas.SetActive(true);
     gallery_ui.init_UI();
 }
Ejemplo n.º 2
0
 //switch from the info back to the gallery screen
 public void info_to_gallery()
 {
     exit_UI();
     info_canvas.SetActive(false);
     gallery_canvas.SetActive(true);
     gallery_ui.init_UI();
 }