热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

全面指南:Unity中的3D建模技术详解

在Unity中进行3D建模的全面指南,详细介绍了市场上三种主要的3D建模工具:Blender3D、Maya和3dsMax。每种工具的特点、优势及其在Unity开发中的应用将被深入探讨,帮助开发者选择最适合自己的建模软件。


Software for 3D Modeling for Unity

There are 3 major tools on the market which you can choose from:



  • Blender

  • 3Ds Max

  • Maya


The Process of Creating a 3D Model for Unity 创建Unity3D模型的流程


Modeling 建模



  • Box modeling is a 3D modeling technique where you take a simple shape like a cube, cylinder, or sphere as a starting point and work along the modeling process until the model is complete. Using simple shapes as building blocks is a good way of making your work more efficient and straightforward.



  • NURBS (non-uniform rational basis spline) modeling is a mathematical modeling method that’s generating and representing curves and surfaces. The NURBS modeling technique helps 3D artists to use the so-called curve modeling. A 3D artist can draw rough lines and the software will automatically create smooth shapes. The following method can be used for quick prototyping of models by creating basic shapes of an object.



  • Digital sculpting is a modeling technique where a 3D artist uses a digital brush to manipulate a 3D object. The process is similar to using clay in real life. But in this case, an artist is using a software editor to work with a digital object. The method allows models to be built extremely quickly, however, it also makes models very polygon-intensive and heavy so that further optimization is required.



  • Procedural modeling (程序化建模) is a method of modeling where a 3D artist is using mathematical formulas, algorithms, and sets of rules to build 3D models or environments. Procedural modeling is used with randomized object details such as trees, landscapes, mountains, fire, water, and other substances.

    优势:美术资源重复组合使用,省去大量美术工作时间;多样性;随机性;规模化



  • Image-based modeling or photogrammetry is a new way of modeling which is based on rendering models from images. An expert takes 360° photos of an object, then uploads them into the software which generates a model. The software creates a 3D model based on the imagery. The cleaner the shots the cleaner the model is. Often, the model requires further manipulations and retopology to make it visually appealing, smooth, and comfortable to work with.




Retopology 重新拓扑

Retopology is the process of converting high-poly models into low-poly ones. This step is an integral part of the post-modeling process that helps make models easy to work with in Unity.


UV mapping

UV mapping is the process of projecting a 2D image to a 3D model’s surface for texturing. In other words, an artist takes a 3D model, unfolds it, and creates a 2D image which is easier to paint textures upon.

2D 图像投影到 3D 模型表面以进行纹理化的过程

工具:Roadkill, Ultimate Unwrap 3D、Blender、Maya


Rigging 骨骼绑定

Rigging is a 3D modeling method of adding bones to a 3D character or an object for creating flexible and movable parts for animation.

骨骼绑定是一种将骨骼添加到 3D 角色或对象的 3D 建模方法,用于创建动画的灵活和可移动部件。


Skinning 蒙皮

Skinning binds the 3D mesh with the bones (rigging) so that you can move vertices and use your model to the fullest capacity in animation.


Texturing 纹理

Texturing is the final stage of the modeling process. To achieve the best texturing results using with materials and textures an artist has to make sure that the model has been rigged, skinned, retopologized and UV mapped successfully.


参考资料

3D Modeling for Unity: The Complete Guide



推荐阅读
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 扫描线三巨头 hdu1928hdu 1255  hdu 1542 [POJ 1151]
    学习链接:http:blog.csdn.netlwt36articledetails48908031学习扫描线主要学习的是一种扫描的思想,后期可以求解很 ... [详细]
  • 使用GDI的一些AIP函数我们可以轻易的绘制出简 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 导航栏样式练习:项目实例解析
    本文详细介绍了如何创建一个具有动态效果的导航栏,包括HTML、CSS和JavaScript代码的实现,并附有详细的说明和效果图。 ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
  • 本文详细介绍了Akka中的BackoffSupervisor机制,探讨其在处理持久化失败和Actor重启时的应用。通过具体示例,展示了如何配置和使用BackoffSupervisor以实现更细粒度的异常处理。 ... [详细]
  • Android 渐变圆环加载控件实现
    本文介绍了如何在 Android 中创建一个自定义的渐变圆环加载控件,该控件已在多个知名应用中使用。我们将详细探讨其工作原理和实现方法。 ... [详细]
  • DNN Community 和 Professional 版本的主要差异
    本文详细解析了 DotNetNuke (DNN) 的两种主要版本:Community 和 Professional。通过对比两者的功能和附加组件,帮助用户选择最适合其需求的版本。 ... [详细]
  • 在金融和会计领域,准确无误地填写票据和结算凭证至关重要。这些文件不仅是支付结算和现金收付的重要依据,还直接关系到交易的安全性和准确性。本文介绍了一种使用C语言实现小写金额转换为大写金额的方法,确保数据的标准化和规范化。 ... [详细]
  • UNP 第9章:主机名与地址转换
    本章探讨了用于在主机名和数值地址之间进行转换的函数,如gethostbyname和gethostbyaddr。此外,还介绍了getservbyname和getservbyport函数,用于在服务器名和端口号之间进行转换。 ... [详细]
  • This document outlines the recommended naming conventions for HTML attributes in Fast Components, focusing on readability and consistency with existing standards. ... [详细]
  • MySQL 数据库迁移指南:从本地到远程及磁盘间迁移
    本文详细介绍了如何在不同场景下进行 MySQL 数据库的迁移,包括从一个硬盘迁移到另一个硬盘、从一台计算机迁移到另一台计算机,以及解决迁移过程中可能遇到的问题。 ... [详细]
  • 本文详细探讨了JDBC(Java数据库连接)的内部机制,重点分析其作为服务提供者接口(SPI)框架的应用。通过类图和代码示例,展示了JDBC如何注册驱动程序、建立数据库连接以及执行SQL查询的过程。 ... [详细]
  • 本题探讨如何通过最大流算法解决农场排水系统的设计问题。题目要求计算从水源点到汇合点的最大水流速率,使用经典的EK(Edmonds-Karp)和Dinic算法进行求解。 ... [详细]
author-avatar
手机用户2502896697
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有