/// <summary> /// 前の画面に戻る /// </summary> public virtual void Back() { Close(); if (null != prevView) { prevView.Open(prevView.prevView); } }
///「シーン回想」ボタンが押された void OnTapSceneGallery(Button button) { Close(); sceneGallery.Open(this); }
///「サウンドルーム」ボタンが押された void OnTapSoundRoom(Button button) { Close(); soundRoom.Open(this); }
///「CGギャラリー」ボタンが押された void OnTapCgGallery(Button button) { Close(); cgGallery.Open(this); }