Upgrade to Pro — share decks privately, control downloads, hide ads and more …

2015年ソフト講義資料07 ~タグを作る~

2015年ソフト講義資料07 ~タグを作る~

北海道科学大学 電子計算機研究部のソフトチームで行っているUnity講座の資料です。
電算部Webページ URL:http://densan.info/index.php
旧Webページ URL:http://www1.hus.ac.jp/~densan/index.htm

More Decks by 北海道科学大学 電子計算機研究部

Other Decks in Programming

Transcript

  1. コピペでも書き写してもおk  赤字が入力する部分。  青字は変化する可能 性のある部分。  classはC#の名前と同 じに、(“ ”)内には

    ゲームオーバーの シーン名を入力だ。 using Unity Engine; using System.Collections; public class gameover : MonoBehaviour { //Use this for initialization void Start(){ } //Update is called once per frame void Update(){ } void OnTriggerEnter(Collider collider){ if (collider.gameObject.tag == "Enemy") { Application.LoadLevel("gameover"); } } }