当前位置:   article > 正文

【Unity】在物体上方显示UI并实现倒计时功能_dotween 倒计时

dotween 倒计时

实现效果

在这里插入图片描述

在物体上方显示UI

1.新建一个Canvas,其Render Mode设置成World Space,Event Camera选择任意一个相机

在这里插入图片描述

2.创建一个Cube,在Scene中调整Canvas的尺寸位置,使其位于Cube上方

在这里插入图片描述

实现倒计时功能

1.在Canvas下创建一个空物体,用来挂载倒计时脚本。在空物体下,创建一个Text,用来显示倒计时文字

在这里插入图片描述

2.实现倒计时

2.1使用协程的方式实现倒计时

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class DaoJiShi : MonoBehaviour
{
    public float time = 100;

    public Text text;

    private void Start()
    {
        text = transform.Find("Text").GetComponent<Text>();

        text.text = $"{(int)time / 60:D1}:{(int)time % 60:D2}";

        StartCoroutine(Count());
    }

    private IEnumerator Count()
    {
        while (time > 0)
        {
            yield return new WaitForSeconds(1);
            time--;
            text.text = $"{(int)time / 60:D1}:{(int)time % 60:D2}";
        }
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32

2.2使用Dotween的方法实现倒计时

    private int  fromNumber = 0;
    private int  toNumber = 50;
    private int  duration = 10;
    void Update()
    {
        text.text = number.ToString();
    }

    public void CountDown()
    {
        DOTween.To(() => fromNumber, x => fromNumber= x, toNumber, duration).SetEase(Ease.Linear);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/783191
推荐阅读
相关标签
  

闽ICP备14008679号