Unity - A计划(永久有效期) 扫二维码继续学习 二维码时效为半小时

(197评价)
价格: 4431.00元
[UGUI整体解决方案-案例篇(Unity 2019.1.0f2)] 实现CD基础效果时,当需显示占比为0时还有一块是亮的
Dunniwah发起了问答2020-03-03
1
回复
196
浏览

 

 

如上图,当showPercent调到0时还有一块是亮的,其余的到1都是正常的

//定义
private int segements = 100;
private float showPercent = 1.0f;

protected override void OnPopulateMesh(VertexHelper toFill)
{
  int realSegement = (int)(showPercent * segements); 
  //颜色处理部分
  UIVertex origin = new UIVertex();
  origin.color = new Color32(60, 60, 60, 225);

  int vertexCount = realSegement + 1;
  for (int i = 0; i < segements + 1; i++)
  {
     UIVertex vertexTemp = new UIVertex();
     if (i < vertexCount) 
     {
        vertexTemp.color = color;
     }
     else
     {
        vertexTemp.color = new Color32(60, 60, 60, 225);
     }
  }
  //画图部分
  int id = 1;
  for (int i = 0; i < segements; i++) 
  {
     toFill.AddTriangle(id, 0, id + 1);
     id++;
  }
}

找了一天了没找到原因,辛苦老师帮忙看看

所有回复
发表回复
你还没有登录,请先 登录或 注册!