北海道科学大学 電子計算機研究部のソフトチームで行っているUnity講座の資料です。
電算部Webページ URL:http://densan.info/index.php
旧Webページ URL:http://www1.hus.ac.jp/~densan/index.htm
--------------------------------------------------
ここから資料内のURLやプログラム等
--------------------------------------------------
28P:
using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;
public class Goto_Gole : MonoBehaviour {
void OnTriggerEnter(Collider collider) {
if (collider.gameObject.tag == "Player") {
SceneManager.LoadScene("Gole1");
}
}
}