Unity中Mesh使用MeshTopology.Lines模式绘制线条及MeshTopology.Quads模式绘制网格参考

Unity中MeshFilter中的Mesh默认情况下使用MeshTopology.Trigangles类型绘制网格,就是通常的绘制三角形网格,实际上Mesh有五种绘制模式,对应MeshTopology的枚举,分别是

|---------------------------------------------------------------------------------------------------------|-----------|
| Triangles | 网格由三角形构成。 |
| Quads | 网格由四边形构成。 |
| Lines | 网格由线条构成。 |
| LineStrip | 网格是线条带。 |
| Points | 网格由点构成。 |

这里以Lines和Quads为例说明Trigangles方式之外的绘制方式。

参考代码如下:

cs 复制代码
using System.Collections.Generic;
using UnityEngine;

public class LineMeshTest : MonoBehaviour
{
	[SerializeField]
	Material material;

	void Start()
	{
		GameObject circle = new GameObject("Circle");
		circle.transform.SetParent(transform);
		circle.transform.localPosition = new Vector3(-5, 0, 0);
		MeshFilter filterCircle = circle.AddComponent<MeshFilter>();
		Mesh meshCircle = GetCircleMesh(2);
		filterCircle.mesh = meshCircle;
		MeshRenderer renderCircle = circle.AddComponent<MeshRenderer>();
		renderCircle.material = material;

		GameObject quad = new GameObject("Quad");
		quad.transform.SetParent(transform);
		quad.transform.localPosition = new Vector3(5, 0, 0);
		MeshFilter filterQuad = quad.AddComponent<MeshFilter>();
		Mesh meshQuad = GetQuadMesh(5);
		filterQuad.mesh = meshQuad;
		MeshRenderer rendeQuad = quad.AddComponent<MeshRenderer>();
		rendeQuad.material = material;
	}

	Mesh GetCircleMesh(float radius)
	{
		List<Vector3> vertexList = new();
		List<int> indexList = new List<int>();
		float radDelta = Mathf.PI / 36;
		for (float i = 0; i < 72f; i++)
		{
			float rad = radDelta * i;
			Vector3 vert = new(radius * Mathf.Cos(rad), radius * Mathf.Sin(rad), 0);
			vertexList.Add(vert);
		}

		indexList.Add(0);
		for (int i = 1; i < 72; i++)
		{
			indexList.Add(i);
			indexList.Add(i);
		}
		indexList.Add(0);

		Mesh mesh = new();
		mesh.SetVertices(vertexList);
		mesh.SetIndices(indexList.ToArray(), MeshTopology.Lines, 0);
		return mesh;
	}

	Mesh GetQuadMesh(float size)
	{
		float s = size * 0.5f;
		Vector3[] vertices = new[] { new Vector3(s, s, 0), new Vector3(s, -s, 0), new Vector3(-s, -s, 0), new Vector3(-s, s, 0) };
		int[] indices = new[] { 0, 1, 2, 3 };

		Mesh mesh = new Mesh();
		mesh.SetVertices(vertices);
		mesh.SetIndices(indices, MeshTopology.Quads, 0);

		return mesh;
	}
}

这个例子里面使用Mesh绘制了一个圆形线条,注意这两行语句:

cs 复制代码
mesh.SetIndices(indexList.ToArray(), MeshTopology.Lines, 0);
cs 复制代码
mesh.SetIndices(indices, MeshTopology.Quads, 0);
相关推荐
weixin_424294676 天前
Unity 调用Steamworks API 的 SteamUserStats.RequestCurrentStats()报错
unity·游戏引擎·steamwork
HoFunGames6 天前
Unity小地图,Easy Minimap System MT-GPS插件
unity·游戏引擎
wy3258643646 天前
Unity 新输入系统InputSystem(基本操作)
unity·c#·游戏引擎
WarPigs6 天前
着色器multi_compile笔记
unity·着色器
ECHO飞跃 0126 天前
Unity2019 本地推理 通义千问0.5-1.5B微调导入
人工智能·深度学习·unity·llama
Unity游戏资源学习屋6 天前
【Unity UI资源包】GUI Pro - Casual Game 专为休闲手游打造的专业级UI资源包
ui·unity
冰凌糕6 天前
Unity3D Shader 顶点法线外扩实现描边效果
unity
小菱形_6 天前
【Unity】TimeLine
unity·游戏引擎
小贺儿开发7 天前
Unity3D 自动化物流分拣模拟
运维·科技·unity·自动化·人机交互·传送带·物流分拣
EQ-雪梨蛋花汤7 天前
【3D可视化】基于 Unity 的智慧体育馆三维信息可视化大屏实践
3d·unity·信息可视化