小編這次要給大家分享的是詳解Unity如何實(shí)現(xiàn)倒計(jì)時(shí)組件,文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
高臺ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!
前言
倒計(jì)時(shí)功能在游戲中一直很重要, 不管是活動開放時(shí)間,還是技能冷卻。
本文實(shí)現(xiàn)了一個(gè)通用倒計(jì)時(shí)組件,實(shí)現(xiàn)了倒計(jì)時(shí)的基本功能,支持倒計(jì)時(shí)結(jié)束后的回調(diào)。
設(shè)計(jì)思路
1、倒計(jì)時(shí)的實(shí)現(xiàn)是通過協(xié)程,WaitForSeconds(delay)可以很好的每隔一個(gè)delay執(zhí)行一次方法,如果需要很精細(xì)的時(shí)間, 可以將delay設(shè)置成0.1等小于1的值。
2、回調(diào)是在倒計(jì)時(shí)為0時(shí),執(zhí)行一個(gè)Action類型的方法。
3、我的這個(gè)組件默認(rèn)是需要Text組件來顯示, 也可以根據(jù)需求刪除。
先看效果:
代碼實(shí)現(xiàn)
// 倒計(jì)時(shí) // 倒計(jì)時(shí)結(jié)束的回調(diào) using System; using System.Collections; using UnityEngine; using UnityEngine.UI; [RequireComponent(typeof(Text))] public class CountDownTime : MonoBehaviour { public int testTime = 15; private int _timeLeft = 0; private Text _textTimer = null; private float _delay = 1; private Action _endCallback = null; private void Start() { if (_textTimer == null) _textTimer = GetComponent<Text>(); SetEndCallback(TestEndCallback); Begin(testTime, true); } public void SetEndCallback(Action callback) { _endCallback = callback; } public void Begin(int timeLeft, bool isRightNow) { _timeLeft = timeLeft; if (_textTimer == null) _textTimer = GetComponent<Text>(); if (isRightNow) CountDown(); if (gameObject.activeInHierarchy) StartCoroutine(Polling(_delay, CountDown)); } private IEnumerator Polling(float delay, Action voidFunc) { while (delay > 0) { voidFunc(); if (_timeLeft < 0 && _endCallback != null) { _endCallback(); _endCallback = null; yield return null; } yield return new WaitForSeconds(delay); } } private void CountDown() { if (_timeLeft >= 0) { TimeSpan ts = new TimeSpan(0, 0, _timeLeft--); _textTimer.text = ts.ToString(); } else if (_timeLeft < -1) { _textTimer.text = _timeLeft.ToString(); } } private void TestEndCallback() { _textTimer.text = "End!!!"; } }
看完這篇關(guān)于詳解Unity如何實(shí)現(xiàn)倒計(jì)時(shí)組件的文章,如果覺得文章內(nèi)容寫得不錯(cuò)的話,可以把它分享出去給更多人看到。
網(wǎng)頁標(biāo)題:詳解Unity如何實(shí)現(xiàn)倒計(jì)時(shí)組件
網(wǎng)頁鏈接:http://jinyejixie.com/article24/ipgdce.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化、品牌網(wǎng)站設(shè)計(jì)、網(wǎng)站營銷、靜態(tài)網(wǎng)站、搜索引擎優(yōu)化、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)