C# Unity将地形(Terrain)导出成obj文件

2024-01-06 17:36

本文主要是介绍C# Unity将地形(Terrain)导出成obj文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

C# Unity将地形(Terrain)导出成obj文件

从其他地方搬运过来的,只能到出obj模型,不能导出贴图

using System.IO;
using System.Text;
using UnityEditor;
using UnityEngine;
using System;enum SaveFormat { Triangles, Quads }
enum SaveResolution { Full, Half, Quarter, Eighth, Sixteenth }class ExportTerrain : EditorWindow
{SaveFormat saveFormat = SaveFormat.Triangles;SaveResolution saveResolution = SaveResolution.Half;static TerrainData terrain;static Vector3 terrainPos;int tCount ;int counter ;int totalCount ;[MenuItem ("Terrain/Export To Obj...")]static void Init () {terrain = null;Terrain terrainObject = Selection.activeObject as Terrain;if (!terrainObject){terrainObject = Terrain.activeTerrain;}if (terrainObject){terrain = terrainObject.terrainData;terrainPos = terrainObject.transform.position;}EditorWindow.GetWindow(typeof(ExportTerrain), false, "MyWindow", true).Show();}void OnGUI () {if (!terrain){GUILayout.Label("No terrain found");if (GUILayout.Button("Cancel")){EditorWindow.GetWindow(typeof(ExportTerrain), false, "MyWindow", true).Close();}return;}saveFormat = (SaveFormat)EditorGUILayout.EnumPopup("Export Format", saveFormat);saveResolution = (SaveResolution)EditorGUILayout.EnumPopup("Resolution", saveResolution);if (GUILayout.Button("Export")){Export();}}void Export () {String fileName = EditorUtility.SaveFilePanel("Export .obj file", "", "Terrain", "obj");int w = terrain.heightmapWidth;int h = terrain.heightmapHeight;Vector3 meshScale = terrain.size;float tRes = Mathf.Pow(2, System.Convert.ToInt32(saveResolution));meshScale =new Vector3(meshScale.x / (w - 1) * tRes, meshScale.y, meshScale.z / (h - 1) * tRes);Vector2 uvScale = new Vector2(1.0f / (w - 1), 1.0f / (h - 1));float[,] tData = terrain.GetHeights(0, 0, w, h);w = (int)((w - 1) / tRes) + 1;h = (int)((h - 1) / tRes) + 1;Vector3[] tVertices = new Vector3[w * h];Vector2[] tUV = new Vector2[w * h];int[] tPolys;if (saveFormat == SaveFormat.Triangles){tPolys = new int[(w - 1) * (h - 1) * 6];}else{tPolys = new int[(w - 1) * (h - 1) * 4];}// Build vertices and UVsfor (int y = 0; y < h; y++){for (int x = 0; x < w; x++){tVertices[y * w + x] = Vector3.Scale(meshScale, new Vector3(x, tData[x * (int)tRes, y * (int)tRes], y)) + terrainPos;tUV[y * w + x] = Vector2.Scale(new Vector2(x * tRes, y * tRes), uvScale);}}var index = 0;if (saveFormat == SaveFormat.Triangles){// Build triangle indices: 3 indices into vertex array for each trianglefor (int y = 0; y < h - 1; y++){for (int x = 0; x < w - 1; x++){// For each grid cell output two trianglestPolys[index++] = (y * w) + x;tPolys[index++] = ((y + 1) * w) + x;tPolys[index++] = (y * w) + x + 1;tPolys[index++] = ((y + 1) * w) + x;tPolys[index++] = ((y + 1) * w) + x + 1;tPolys[index++] = (y * w) + x + 1;}}}else{// Build quad indices: 4 indices into vertex array for each quadfor (int y = 0; y < h - 1; y++){for (int x = 0; x < w - 1; x++){// For each grid cell output one quadtPolys[index++] = (y * w) + x;tPolys[index++] = ((y + 1) * w) + x;tPolys[index++] = ((y + 1) * w) + x + 1;tPolys[index++] = (y * w) + x + 1;}}}// Export to .objStreamWriter sw=null;try{sw=new StreamWriter(fileName);sw.WriteLine("# Unity terrain OBJ File");// Write verticesStringBuilder sb;System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");counter = tCount = 0;totalCount = (tVertices.Length * 2 + (saveFormat == SaveFormat.Triangles ? tPolys.Length / 3 : tPolys.Length / 4)) / 1000;for (int i = 0; i < tVertices.Length; i++){UpdateProgress();sb = new StringBuilder("v ", 20);// StringBuilder stuff is done this way because it's faster than using the "{0} {1} {2}"etc. format// Which is important when you're exporting huge terrains.sb.Append(tVertices[i].x.ToString()).Append(" ").Append(tVertices[i].y.ToString()).Append(" ").Append(tVertices[i].z.ToString());sw.WriteLine(sb);}// Write UVsfor (int i = 0; i < tUV.Length; i++){UpdateProgress();sb =new StringBuilder("vt ", 22);sb.Append(tUV[i].x.ToString()).Append(" ").Append(tUV[i].y.ToString());sw.WriteLine(sb);}if (saveFormat == SaveFormat.Triangles){// Write trianglesfor (int i = 0; i < tPolys.Length; i += 3){UpdateProgress();sb =new StringBuilder("f ", 43);sb.Append(tPolys[i] + 1).Append("/").Append(tPolys[i] + 1).Append(" ").Append(tPolys[i + 1] + 1).Append("/").Append(tPolys[i + 1] + 1).Append(" ").Append(tPolys[i + 2] + 1).Append("/").Append(tPolys[i + 2] + 1);sw.WriteLine(sb);}}else{// Write quadsfor (int i = 0; i < tPolys.Length; i += 4){UpdateProgress();sb =new StringBuilder("f ", 57);sb.Append(tPolys[i] + 1).Append("/").Append(tPolys[i] + 1).Append(" ").Append(tPolys[i + 1] + 1).Append("/").Append(tPolys[i + 1] + 1).Append(" ").Append(tPolys[i + 2] + 1).Append("/").Append(tPolys[i + 2] + 1).Append(" ").Append(tPolys[i + 3] + 1).Append("/").Append(tPolys[i + 3] + 1);sw.WriteLine(sb);}}}catch (Exception err){Debug.Log("Error saving file: " + err.Message);}if(sw!=null)sw.Close();terrain = null;EditorUtility.ClearProgressBar();EditorWindow.GetWindow(typeof(ExportTerrain), false, "MyWindow", true).Close();}void UpdateProgress () {if (counter++ == 1000){counter = 0;EditorUtility.DisplayProgressBar("Saving...", "", Mathf.InverseLerp(0, totalCount, ++tCount));}}
}

在这里插入图片描述

这篇关于C# Unity将地形(Terrain)导出成obj文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/577089

相关文章

C#下Newtonsoft.Json的具体使用

《C#下Newtonsoft.Json的具体使用》Newtonsoft.Json是一个非常流行的C#JSON序列化和反序列化库,它可以方便地将C#对象转换为JSON格式,或者将JSON数据解析为C#对... 目录安装 Newtonsoft.json基本用法1. 序列化 C# 对象为 JSON2. 反序列化

C#文件复制异常:"未能找到文件"的解决方案与预防措施

《C#文件复制异常:未能找到文件的解决方案与预防措施》在C#开发中,文件操作是基础中的基础,但有时最基础的File.Copy()方法也会抛出令人困惑的异常,当targetFilePath设置为D:2... 目录一个看似简单的文件操作问题问题重现与错误分析错误代码示例错误信息根本原因分析全面解决方案1. 确保

基于C#实现PDF转图片的详细教程

《基于C#实现PDF转图片的详细教程》在数字化办公场景中,PDF文件的可视化处理需求日益增长,本文将围绕Spire.PDFfor.NET这一工具,详解如何通过C#将PDF转换为JPG、PNG等主流图片... 目录引言一、组件部署二、快速入门:PDF 转图片的核心 C# 代码三、分辨率设置 - 清晰度的决定因

C# LiteDB处理时间序列数据的高性能解决方案

《C#LiteDB处理时间序列数据的高性能解决方案》LiteDB作为.NET生态下的轻量级嵌入式NoSQL数据库,一直是时间序列处理的优选方案,本文将为大家大家简单介绍一下LiteDB处理时间序列数... 目录为什么选择LiteDB处理时间序列数据第一章:LiteDB时间序列数据模型设计1.1 核心设计原则

Unity新手入门学习殿堂级知识详细讲解(图文)

《Unity新手入门学习殿堂级知识详细讲解(图文)》Unity是一款跨平台游戏引擎,支持2D/3D及VR/AR开发,核心功能模块包括图形、音频、物理等,通过可视化编辑器与脚本扩展实现开发,项目结构含A... 目录入门概述什么是 UnityUnity引擎基础认知编辑器核心操作Unity 编辑器项目模式分类工程

C#高效实现Word文档内容查找与替换的6种方法

《C#高效实现Word文档内容查找与替换的6种方法》在日常文档处理工作中,尤其是面对大型Word文档时,手动查找、替换文本往往既耗时又容易出错,本文整理了C#查找与替换Word内容的6种方法,大家可以... 目录环境准备方法一:查找文本并替换为新文本方法二:使用正则表达式查找并替换文本方法三:将文本替换为图

C#使用Spire.XLS快速生成多表格Excel文件

《C#使用Spire.XLS快速生成多表格Excel文件》在日常开发中,我们经常需要将业务数据导出为结构清晰的Excel文件,本文将手把手教你使用Spire.XLS这个强大的.NET组件,只需几行C#... 目录一、Spire.XLS核心优势清单1.1 性能碾压:从3秒到0.5秒的质变1.2 批量操作的优雅

C#和Unity中的中介者模式使用方式

《C#和Unity中的中介者模式使用方式》中介者模式通过中介者封装对象交互,降低耦合度,集中控制逻辑,适用于复杂系统组件交互场景,C#中可用事件、委托或MediatR实现,提升可维护性与灵活性... 目录C#中的中介者模式详解一、中介者模式的基本概念1. 定义2. 组成要素3. 模式结构二、中介者模式的特点

C#中SortedSet的具体使用

《C#中SortedSet的具体使用》SortedSet是.NETFramework4.0引入的一个泛型集合类,它实现了一个自动排序的集合,内部使用红黑树数据结构来维护元素的有序性,下面就来介绍一下如... 目录基础概念主要特性创建和初始化基本创建方式自定义比较器基本操作添加和删除元素查询操作范围查询集合运

C# Opacity 不透明度的具体使用

《C#Opacity不透明度的具体使用》本文主要介绍了C#Opacity不透明度的具体使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录WinFormsOpacity以下是一些使用Opacity属性的示例:设置窗体的透明度:设置按钮的透