using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement;//シーンの呼び出しをする際に追記する public class CallGame : MonoBehaviour { // Update is called once per frame void Update () { if (Input.GetMouseButtonDown (0)) {//マウスがおされたら SceneManager.LoadScene ("Main");//Mainの部分には呼び出したいシーンの名前を入れる } } }
タイトル画面からゲーム画面の呼び出し
2019年5月3日
コメント
コメント一覧 (1件)
[…] タイトル画面 […]