//スタートパネルに戻る
 public void ReturnStart()
 {
     startPanel.SetActive(true);
     measurePanel.SetActive(false);
     sharedPanel.SetActive(false);
     type = measureType.start;
 }
 public void SwitchShared()
 {
     startPanel.SetActive(false);
     sharedPanel.SetActive(true);
     type = measureType.shared;
 }
 //スタートパネルの動作
 public void SwitchMeasure()
 {
     startPanel.SetActive(false);
     measurePanel.SetActive(true);
     type = measureType.measure;
 }