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);
相关推荐
HH‘HH15 小时前
Unity引擎界面各个功能面板详细介绍
unity·游戏引擎
℡枫叶℡15 小时前
Unity 2D资产命名常用缩写
unity·资产命名缩写
丁小未19 小时前
Unity AssetBundle商业化项目资源方案
unity·游戏引擎·assetbundle·unity框架
unityのkiven1 天前
通过 Unity 实现杀戮尖塔2式卡牌系统与机制
unity·游戏引擎
郝学胜-神的一滴1 天前
中级OpenGL教程 020:巧用数组与循环实现多点点光源渲染,告别冗余代码重构方案
c++·unity·游戏引擎·godot·图形渲染·unreal
qq_170264751 天前
unity的锁帧和垂直同步
unity·游戏引擎
承渊政道1 天前
飞算Java炫技赛:Java×Unity数字孪生园区平台的从零落地记录
java·开发语言·unity·技术分享·vibe coding·飞算javaai·飞算java ai炫技赛
unityのkiven1 天前
Unity 共享材质修改问题与 MaterialPropertyBlock 解决方案
unity·游戏引擎·材质
丁小未2 天前
Unity 极致高效的IM设计方案教程
unity·性能优化·游戏引擎·im
unityのkiven2 天前
Unity UGUI 中 EventTrigger 导致 ScrollRect 鼠标滚轮失效的问题分析与解决
unity·计算机外设·游戏引擎