前往小程序,Get更优阅读体验!
立即前往
发布
社区首页 >专栏 >unity3d:模型闪烁

unity3d:模型闪烁

作者头像
立羽
发布2023-08-24 14:41:24
发布2023-08-24 14:41:24
32900
代码可运行
举报
文章被收录于专栏:Unity3d程序开发Unity3d程序开发
运行总次数:0
代码可运行
代码语言:javascript
代码运行次数:0
复制
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ModelGlint : MonoBehaviour {

    /// <summary>
    /// 闪烁颜色
    /// </summary>
    public Color m_color = new Color(1, 0, 1, 1);

    float m_rate = 0.5f;

    List<Material> m_listMat = new List<Material>();
    Dictionary<Material, Color> m_dicColor = new Dictionary<Material, Color>();
     bool m_isDoing = false;
    private Coroutine m_glinting;

    public bool m_autoStart = false;


    // Use this for initialization
    void Start () {
        Renderer[] listRender = gameObject.GetComponentsInChildren<Renderer>();
        for (int i = 0; i < listRender.Length; i++)
        {
            for (int j = 0; j < listRender[i].materials.Length; j++)
            {
                m_listMat.Add(listRender[i].materials[j]);
            }
        }

        for (int i = 0; i < m_listMat.Count; i++)
        {
            m_dicColor[m_listMat[i]] = m_listMat[i].GetColor("_Color");
        }

        if (m_autoStart == true)
        {
            StartGlinting();
        }
    }

    private void OnDestroy()
    {
        StopGlinting();
    }
    public void SetColor(Color color)
    {
        m_color = color;

        if (m_glinting == null)
        {
            m_glinting = StartCoroutine(IEGlinting());
        }
    }
    public void StartGlinting()
    {
        //if (m_isDoing == true)
        //{
        //    return;
        //}
        //m_isDoing = true;


        if (m_glinting != null)
        {
            StopCoroutine(m_glinting);
        }
        m_glinting = StartCoroutine(IEGlinting());
    }

    public void StopGlinting()
    {
        //if (m_isDoing == false)
        //{
        //    return;
        //}
        //m_isDoing = false;

        if (m_glinting != null)
        {
            StopCoroutine(m_glinting);
            m_glinting = null;
        }

        for (int i = 0; i < m_listMat.Count; i++)
        {
            m_listMat[i].SetColor("_Color", m_dicColor[m_listMat[i]]);
        }

    }
    private IEnumerator IEGlinting()
    {
        Color newColor = Color.white;
        while (true)
        {
            for (int i = 0; i < m_listMat.Count; i++)
            {
                m_listMat[i].SetColor("_Color", m_dicColor[m_listMat[i]]);
            }
            
            //_renderer.UpdateGIMaterials();
            yield return new WaitForSeconds(m_rate) ;


            for (int i = 0; i < m_listMat.Count; i++)
            {
                m_listMat[i].SetColor("_Color", m_color);
            }

            //_renderer.UpdateGIMaterials();
            yield return new WaitForSeconds(m_rate);
        }
    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-11-08,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档