日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

Demon_接金币(三个掉落物品预设体,一接物体的工具)

發(fā)布時間:2025/3/21 50 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Demon_接金币(三个掉落物品预设体,一接物体的工具) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

接物體的工具

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);}}}

創(chuàng)建掉落體的三個預設體

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_接金币(三个掉落物品预设体,一接物体的工具)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。