码迷,mamicode.com
首页 > 其他好文 > 详细

fly bird 案例代码_Pipe

时间:2015-11-08 19:22:49      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

 1 using UnityEngine;
 2 using System.Collections;
 3 
 4 public class pipe : MonoBehaviour {
 5     void Start() {
 6         RandomGeneratePosition();
 7     }
 8      public void RandomGeneratePosition() {
 9         float pos_y = Random.Range(-0.2f, 0.1f);
10         this.transform.localPosition = new Vector3(this.transform.localPosition.x, 
11             pos_y, this.transform.localPosition.y);
12     }
13 
14     //计分
15      void OnTriggerExit(Collider other) {
16          if (other.tag == "Player")
17          {
18              audio.Play();
19              GameMangger._intance.score++;
20          }
21      }
22 
23     //显示分数的文字
24      void OnGUI() {
25          GUILayout.Label("Score:" + GameMangger._intance.score);
26      }
27 
28 }

 

fly bird 案例代码_Pipe

标签:

原文地址:http://www.cnblogs.com/wry524/p/4947823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!