public void ButtonPhotoSelect()
 {
     if (Application.isEditor)
     {
         OnGetPhoto(Resources.Load <Texture2D>("test_stick_figure"));
     }
     else
     {
         ImportPhotoHandler.GetPhoto(OnGetPhoto, OnGetPhotoFail);
     }
 }
예제 #2
0
 public void ButtonPhoto()
 {
     ImportPhotoHandler.GetPhoto(OnGetPhoto, OnGetPhotoFail);
 }