Demon_接金币(三个掉落物品预设体,一接物体的工具)
生活随笔
收集整理的這篇文章主要介紹了
Demon_接金币(三个掉落物品预设体,一接物体的工具)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
接物體的工具
using UnityEngine; using System.Collections;public class Tool : MonoBehaviour {float hor;Vector3 moveDir;public float moveSpeed = 3f;int score = 0;void Update(){hor = Input.GetAxis ("Horizontal");//獲取移動方向向量moveDir = hor * Vector3.right;//移動transform.position += moveDir * Time.deltaTime * moveSpeed;}void OnTriggerEnter(Collider other){if (other.tag == "Gold") {Destroy (other.gameObject);Debug.Log (++score);}}}創建掉落體的三個預設體
using UnityEngine; using System.Collections;public class GoldCreater : MonoBehaviour {//金幣預設體public GameObject goldPrefab;//生成金幣的時間間隔public float interval = 1f;//計時器private float timer;//索引號private int index;void Update(){//計時器計時timer += Time.deltaTime;//計時完成if (timer >= interval) {///TODO:生成金幣 GoldInit();//計時器歸零timer = 0;}}/// <summary>/// 生成金幣/// </summary>void GoldInit(){//子對象索引號(隨機)index = Random.Range (0, 3);//生成位置Vector3 initPos = transform.GetChild (index).position;//生成金幣 Instantiate (goldPrefab, initPos, Quaternion.identity);}}?
轉載于:https://www.cnblogs.com/VR-1024/p/6011143.html
總結
以上是生活随笔為你收集整理的Demon_接金币(三个掉落物品预设体,一接物体的工具)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 第六十七篇、OC_UITableView
- 下一篇: Foreman安装配置