UGUI—自定义几何形状

作者:追风剑情 发布于:2019-10-11 17:18 分类:Unity3d

示例:

11111.png

MyGeometry.cs

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. using UnityEngine.Events;
  6. using UnityEngine.Rendering;
  7.  
  8. public class MyGeometry : MaskableGraphic
  9. {
  10. // 自定义几何形状顶点
  11. protected override void OnPopulateMesh(VertexHelper vh)
  12. {
  13. vh.Clear();
  14. var color32 = color;
  15. vh.AddVert(new Vector3(0, 0), color32, new Vector2(0, 0));
  16. vh.AddVert(new Vector3(0, 100), color32, new Vector2(0, 1));
  17. vh.AddVert(new Vector3(100, 100), color32, new Vector2(1, 1));
  18. vh.AddVert(new Vector3(100, 0), color32, new Vector2(1, 0));
  19. vh.AddVert(new Vector3(50, -50), color32, new Vector2(1, 0));
  20.  
  21. vh.AddTriangle(0, 1, 2);
  22. vh.AddTriangle(2, 3, 0);
  23. vh.AddTriangle(0, 3, 4);
  24. }
  25. }

效果
222.png

通过调用 SetVerticesDirty() 可重新触发 OnPopulateMesh()

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号