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

2015年ソフト講義資料09 ~訂正と足切り制作~

2015年ソフト講義資料09 ~訂正と足切り制作~

北海道科学大学 電子計算機研究部のソフトチームで行っている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 // Update is called once per frame void Update

    () { transform.Translate (Vector3.forward * speed * Time.deltaTime); } void OnCollisionEnter(Collision collider){ if (collider.gameObject.tag == "Player") { Destroy (this.gameObject); } } } using UnityEngine; using System.Collections; public class enemy : MonoBehaviour { public float speed = 10.0f; // Use this for initialization void Start () { }