当前位置:网站首页>Unity 动态合并网格纹理
Unity 动态合并网格纹理
2022-07-07 21:48:00 【weixin_44489379】
public static class CarControlMeshCombine
{
/// <summary>
/// 图片缓存路径,这个路径在运行时不可访问,可以使用StreamAssets
/// </summary>
[SerializeField]
private static string TGAPath = "Assets/ArtAssets/A_3D/Cars/LicensePlates/Textures/texture.tga";
/// <summary>
/// material缓存路径,这个路径在运行时不可访问,可以使用StreamAssets
/// </summary>
[SerializeField]
private static string MaterialPath = "Assets/ArtAssets/A_3D/Cars/LicensePlates/Materials/mat.mat";
/// <summary>
/// 合并网格
/// </summary>
/// <param name="gameObject"></param>
public static void CombineMesh(GameObject gameObject)
{
//获取所有子物体MeshFilter/MeshRenderer
MeshFilter[] mfChildren = gameObject.GetComponentsInChildren<MeshFilter>();
MeshRenderer[] mrChildren = gameObject.GetComponentsInChildren<MeshRenderer>();
//组合的网格
CombineInstance[] combine = new CombineInstance[mfChildren.Length];
//在父物体上创建MeshFilter和MeshRenderer
MeshRenderer mrSelf = gameObject.AddComponent<MeshRenderer>();
MeshFilter mfSelf = gameObject.AddComponent<MeshFilter>();
//创建一组材质球和纹理,并采集保存到数组
Material[] materials = new Material[mrChildren.Length];
Texture2D[] textures = new Texture2D[mrChildren.Length];
for (int i = 0; i < mrChildren.Length; i++)
{
materials[i] = mrChildren[i].sharedMaterial;
Texture2D tx = materials[i].GetTexture("_BaseMap") as Texture2D;
Texture2D tx2D = new Texture2D(tx.width, tx.height, TextureFormat.ARGB32, false);
tx2D.SetPixels(tx.GetPixels(0, 0, tx.width, tx.height));
tx2D.Apply();
textures[i] = tx2D;
}
//获取第一个材质,并拷贝参数,赋给父物体
Material materialNew = new Material(materials[0].shader);
materialNew.CopyPropertiesFromMaterial(materials[0]);
mrSelf.sharedMaterial = materialNew;
//创建一张纹理,并将纹理赋给父物体
Texture2D texture = new Texture2D(1024, 1024);
materialNew.SetTexture("_MainTex", texture);
//将数组中的纹理保存在2d矩形空间中
Rect[] rects = texture.PackTextures(textures, 10, 1024);
for (int i = 0; i < mfChildren.Length; i++)
{
if (mfChildren[i].transform == gameObject.transform)
{
continue;
}
Rect rect = rects[i];
Mesh meshCombine = mfChildren[i].mesh;
Vector2[] uvs = new Vector2[meshCombine.uv.Length];
//把网格的uv根据贴图的rect刷一遍
for (int j = 0; j < uvs.Length; j++)
{
uvs[j].x = rect.x + meshCombine.uv[j].x * rect.width;
uvs[j].y = rect.y + meshCombine.uv[j].y * rect.height;
}
meshCombine.uv = uvs;
combine[i].mesh = meshCombine;
combine[i].transform = mfChildren[i].transform.localToWorldMatrix;
mfChildren[i].gameObject.SetActive(false);
}
//合并网格
Mesh newMesh = new Mesh();
newMesh.CombineMeshes(combine, true, true);
mfSelf.mesh = newMesh;
FileWriteTexture(texture, TGAPath);
CreateMaterial(materialNew);
LoadTextureAlter(TGAPath);
MaterialSetTexture(MaterialPath, TGAPath);
}
/// <summary>
/// 把合并好的图片缓存对应在路径下
/// </summary>
/// <param name="texture"></param>
static void FileWriteTexture(Texture2D texture, string jpgPath)
{
var bytes = texture.EncodeToTGA();
FileStream file = File.Open(jpgPath, FileMode.Create);
BinaryWriter writer = new BinaryWriter(file);
writer.Write(bytes);
file.Close();
texture.Apply();
}
/// <summary>
/// 合并后的材质球缓存到MaterialPath路径下,刷新
/// </summary>
/// <param name="materialNew"></param>
static void CreateMaterial(Material materialNew)
{
AssetDatabase.CreateAsset(materialNew, MaterialPath);
AssetDatabase.Refresh();
}
/// <summary>
/// 加载缓存合并图片,修改里面的参数
/// </summary>
static void LoadTextureAlter(string path)
{
TextureImporter textureImporter = AssetImporter.GetAtPath(path) as TextureImporter;
textureImporter.textureType = TextureImporterType.Default;
textureImporter.isReadable = true;
AssetDatabase.ImportAsset(path);
AssetDatabase.Refresh();
}
/// <summary>
/// 缓存的Material存在上面贴图丢失的现象,重新绑定贴图数据
/// </summary>
static void MaterialSetTexture(string materialPath, string jpgPath)
{
Material LoadMaterial = AssetDatabase.LoadAssetAtPath<Material>(materialPath);
Texture2D Loadtextur = AssetDatabase.LoadAssetAtPath<Texture2D>(jpgPath);
LoadMaterial.SetTexture("_MainTex", Loadtextur);
AssetDatabase.Refresh();
}
}
边栏推荐
- Force deduction - question 561 - array splitting I - step by step parsing
- Explain in detail the communication mode between arm A7 and risc-v e907 on Quanzhi v853
- Revit secondary development - cut view
- Ni9185 and ni9234 hardware settings in Ni Max
- 双非大厂测试员亲述:对测试员来说,学历重要吗?
- Debezium series: binlogreader for source code reading
- 数字化转型:五个步骤推动企业进步
- Debezium系列之: 支持在 KILL 命令中使用变量
- 微服务远程Debug,Nocalhost + Rainbond微服务开发第二弹
- Line measurement - graphic reasoning -9- line problem class
猜你喜欢
行测-图形推理-1-汉字类
面试百问:如何测试App性能?
Line test graph reasoning graph group class
php 获取图片信息的方法
行测-图形推理-3-对称图形类
详解全志V853上的ARM A7和RISC-V E907之间的通信方式
Digital transformation: five steps to promote enterprise progress
Common verification rules of form components -2 (continuously updating ~)
Redis cluster installation
Signal feature extraction +lstm to realize gear reducer fault diagnosis -matlab code
随机推荐
知识点滴 - PCB制造工艺流程
ASP. Net core introduction V
Form组件常用校验规则-2(持续更新中~)
Antd date component appears in English
Visual design form QT designer design gui single form program
Aspose. Word operation word document (I)
Debezium系列之:引入对 LATERAL 运算符的支持
LeetCode142. Circular linked list II [two pointers, two methods for judging links in the linked list and finding ring points]
Knowledge drop - PCB manufacturing process flow
Sword finger offer 63 Maximum profit of stock
Build an "immune" barrier in the cloud to prepare your data
软件测评中心▏自动化测试有哪些基本流程和注意事项?
Understand the autograd package in pytorch
Debezium series: introducing support for the final operator
Sword finger offer 55 - I. depth of binary tree
Nx10.0 installation tutorial
Variables and constants
不夸张地说,这是我见过最通俗易懂的,pytest入门基础教程
Unity与WebGL的相爱相杀
[problem] pytorch installation