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の部分には呼び出したいシーンの名前を入れる
}
}
}
目次
コメント
コメント一覧 (1件)
[…] タイトル画面 […]