Unity3d实现跑马灯广播效果

本文实例为大家分享了Unity3d实现跑马灯广播效果的具体代码,供大家参考,具体内容如下

废话不多说,直接上代码

using DG.Tweening;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using Utils;
//挂在UI上面
public class BroadcastUI : MonoBehaviour
{
    private bool inited = false;
    private BroadcastMan bm;
    public Transform parent;
    public GameObject prefab;
    public float parentWith = 0f;
    private Queue<GameObject> textList = new Queue<GameObject>();
    public string curPlayMsg;
    private int curPlayTime = 0;
    public float moveTime = 5f;
    private int curWaitMsgNum = 0;
    private int curEndIndex = 0;
    private void Init()
    {
        bm = this.gameObject.AddComponent<BroadcastMan>();
        parentWith = parent.GetComponent<RectTransform>().rect.width;
        moveTime = moveTime * Screen.width / 812f;
        Debug.LogError("move speed ==" + moveTime);
        inited = true;
    }
    // Start is called before the first frame update
    private void Awake()
    {
        if (!inited) Init();
    }

    private IEnumerator ScrollMsg()
    {
        curWaitMsgNum = bm.MsgCount;
        parent.gameObject.SetActiveFast(true);
        while (bm.MsgCount > 0 || curPlayTime < bm.repetTime)
        {
            if (curPlayMsg == "")
            {
                curPlayMsg = bm.GetAMsgFromQueue();
                curPlayTime = 1;
            }
            else
            {
                if (bm.repetTime > 1)
                {
                    if (curPlayTime >= bm.repetTime)
                    {
                        curPlayTime = 1;
                        curPlayMsg = bm.GetAMsgFromQueue();
                    }
                    else
                    {
                        curPlayTime++;
                    }
                }
                else
                {
                    curPlayMsg = bm.GetAMsgFromQueue();
                }
            }
            Debug.LogError("msg:" + curPlayMsg);
            GameObject text = GetAText();
            text.GetComponent<Text>().text = curPlayMsg;
            text.transform.SetParent(parent, false);
            text.transform.localPosition = prefab.transform.localPosition;
            yield return new WaitForEndOfFrame();
            float textWith = text.GetComponent<RectTransform>().rect.width;
            float moveDis = textWith + parentWith;
            float curMoveTime = moveTime * moveDis / parentWith;
            //Debug.LogError("当前移动时间,当前播放字越多,时间越长"+curMoveTime);

            Tweener tweener = text.transform.DOLocalMove(new Vector3(text.transform.localPosition.x - moveDis, text.transform.localPosition.y, 0), curMoveTime).SetEase(Ease.Linear)
            .OnComplete(() =>
            {
                curEndIndex++;
                textList.Enqueue(text);
                if (bm.MsgCount == 0 && curEndIndex == curWaitMsgNum * bm.repetTime)
                {
                    parent.gameObject.SetActiveFast(false);
                }
            });
            //Debug.LogError("下一条等待时间,当前字越多,等待时间越长"+ (0.5f * parentWith + textWith) / (moveDis / curMoveTime));
            yield return new WaitForSeconds((0.5f * parentWith + textWith) / (moveDis / curMoveTime));
        }
    }

    private void AddMsg()
    {
        List<string> msgs = new List<string>();
        msgs.Add("<color=#C0FF35>测试一下这个跑马灯的效果>>>>>>>>>>></color>");
        msgs.Add("<color=#C14848>中国第七金!祝贺庞伟、姜冉馨</color>");
        msgs.Add("<color=#6BEE5B>第10金!中国组合获得东京奥运会女子四人双桨金牌</color>");
        msgs.Add("<color=#EE5BBB>台风“烟花”</color>");
        msgs.Add("<color=#DB2136>把鲸鱼送回大海!七米长须鲸搁浅 多方力量开展救援</color>");
        bm.AddMsgToQueue(msgs);
    }

    private void OnDestory()
    {
        inited = false;

    }

    private void Update()
    {
        if (Input.GetKeyDown(KeyCode.A) && bm.MsgCount == 0)
        {
            AddMsg();
            StartCoroutine(ScrollMsg());
        }
    }

    private GameObject GetAText()
    {
        if (textList.Count > 0)
        {
            return textList.Dequeue();
        }
        return GameObject.Instantiate(prefab);
    }
}
using System.Collections.Generic;
using UnityEngine; 
//这个放收到的消息
public class BroadcastMan : MonoBehaviour
{
    private bool inited = false;
    private Queue<string> msgQueue;//灯队列.
    public int repetTime = 2;//广播重复次数
    private void Init()
    {
        msgQueue = new Queue<string>();
        inited = true;
    }
    // Start is called before the first frame update
    private void Awake()
    {
        if (!inited) Init(); 
    }

    public void AddMsgToQueue(List<string> msgs)
    {
        for (int i = 0; i < msgs.Count; i++)
        {
            msgQueue.Enqueue(msgs[i]);
        }
    }

    public string GetAMsgFromQueue()
    {
        if (msgQueue.Count > 0)
        {
            return msgQueue.Dequeue();
        }
        return "";
    }

    public int MsgCount
    {
        get => msgQueue.Count;
    }

    private void OnDestory()
    {
        inited = false;
    }
}

界面

好了,就这样

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Unity实现跑马灯抽奖效果

    Unity 跑马灯抽奖效果实现代码,供大家参考,具体内容如下 这边用到插件是NGUI+Dotween,思路简单说下:先排版,通过移动图片蒙版来实现效果. 下面是排版和文件目录. 代码部分是通过余数去确认停的位置,boxlist通过unity拖拉加入数据,chooseBoxList直接通过余数判断添加. 代码量很少,稍微看下就明白了. 直接上代码了: using System; using System.Collections; using System.Collections.Generic;

  • Unity之跑马灯抽奖效果单抽与连抽(附demo)

    本文主要介绍了Unity之跑马灯抽奖效果单抽与连抽,分享给大家,具体如下: 效果图 单次抽奖效果 跳过动画抽奖效果 三连抽抽奖效果 设计思路 点击按钮 ,根据需求(概率)计算本次抽奖获得物品模拟转动 (先加速后减速), 一段时间后停止连抽的情况下等所有奖品动画都表演完成才结束跳过动画设计,有跳过时抽奖速度直接到最大,并进入可中奖 场景搭建 一个按钮,一个组奖品放到一个父物体上. 奖品元素,有两种状态,一种旋转状态,一种中奖状态. 代码 using System; using System.Col

  • Unity3d实现跑马灯广播效果

    本文实例为大家分享了Unity3d实现跑马灯广播效果的具体代码,供大家参考,具体内容如下 废话不多说,直接上代码 using DG.Tweening; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using Utils; //挂在UI上面 public class BroadcastUI : MonoBehaviour {     priv

  • JS实现状态栏跑马灯文字效果代码

    本文实例讲述了JS实现状态栏跑马灯文字效果代码.分享给大家供大家参考,具体如下: 这款状态栏跑马灯,文字跑动的定义在数组内,自己可修改内容.现在的IE8貌似不兼容,有缺憾的代码,欢迎JS爱好者修正,修正请发回一份.状态栏为效果显示区. 运行效果截图如下: 在线演示地址如下: http://demo.jb51.net/js/2015/js-ztlpmd-txt-style-codes/ 具体代码如下: <HTML> <HEAD> <TITLE>间隔状态栏跑马灯</T

  • 基于jquery的文字向上跑动类似跑马灯的效果

    想实现一个类似跑马灯的效果,发现跑马灯有空格.效果也不美观,于是用jquery写了个 页面代码 <div class="recordList"> <ul class="tpl-rotate-recordList" style="margin-top: 0px;"> <li class="tpl-rotate-recordList-item"> 恭喜187****5204获得1000RBM &

  • 基于jquery实现的文字向上跑动类似跑马灯的效果

    想实现一个类似跑马灯的效果,发现跑马灯有空格.效果也不美观,于是用jquery写了个 页面代码 复制代码 代码如下: <div class="recordList"> <ul class="tpl-rotate-recordList" style="margin-top: 0px;"> <li class="tpl-rotate-recordList-item"> 恭喜187****5204

  • Vue实现跑马灯简单效果

    本文实例为大家分享了Vue实现跑马灯简单效果的具体代码,供大家参考,具体内容如下 1.跑马灯效果 说明:单击"应援"按钮文字向左飘动,再单击"暂停"按钮停止当前飘动 2.完整代码 (注意:代码中需要引入vue.js文件,这个文件自己根据目录位置引入,具体位置代码中有注释) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&q

  • 基于WPF实现控件轮廓跑马灯动画效果

    代码如下 一.创建EdgeLight.xaml代码如下. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"                     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"                     xmlns:controls="c

  • Android自定义跑马灯文字效果

    本文实例为大家分享了Android自定义跑马灯文字的具体代码,供大家参考,具体内容如下 Android 跑马灯效果文字: 效果图(真实动画很流畅,这个转gif有问题,感觉有点卡): 代码: /** * Created by wuguangliang on 2018/12/21 * * 跑马灯效果文字 */ public class MarqueeHorizontalTextView extends AppCompatTextView { private float textLength = 0f

  • WPF实现简单的跑马灯效果

    最近项目上要用到跑马灯的效果,和网上不太相同的是,网上大部分都是连续的,而我们要求的是不连续的. 也就是是,界面上就展示4项(展示项数可变),如果有7项要展示的话,则不断的在4个空格里左跳,当然,衔接上效果不是很好看. 然后,需要支持点击以后进行移除掉不再显示的内容. 效果如下: 思路大致如下: 1.最外层用一个ViewBox,为了可以填充调用此控件的地方,这样可以方便自动拉伸 复制代码 代码如下: <Viewbox x:Name="viewbox_main" Height=&q

随机推荐