IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> 【Unity3D】Building WebGL 工程 -> 正文阅读

[游戏开发]【Unity3D】Building WebGL 工程

目录

Build?Settings

Player settings

?Other Settings

Publishing Settings

Data Caching

自定义 shader引入


【摘要】:本文主要是为了记录unity打包webGL工程的注意事项

? ? ? ? ? ? ? ? Unity Hub版本:Unity Hub 2.3.2

? ? ? ? ? ? ? ? Unity 版本:2019.4.5f1

【官网地址】:Unity - Manual: Building and running a WebGL project

Build?Settings

1?Development Build

When you select the?Development Build
?setting, Unity generates a development build which has Profiler support and a development console which you can use to see any errors in your application. Additionally, development builds do not minify content. The JavaScript in development builds are in human-readable form, and Unity preserves function names so you can see stack traces for errors. However, this means development builds are very large, and too large to distribute. You can only select?Autoconnect Profiler?and?Deep Profiling Support?if you enable the Development Build setting.

?当您选择开发版本时设置后,Unity 会生成一个具有 Profiler 支持的开发版本和一个开发控制台,您可以使用它来查看应用程序中的任何错误。 此外,开发版本不会缩小内容。 开发版本中的 JavaScript 是人类可读的形式,Unity 保留函数名称,以便您可以查看错误的堆栈跟踪。 然而,这意味着开发构建非常大,而且太大而无法分发如果您启用了 Development Build 设置,则只能选择 Autoconnect Profiler 和 Deep Profiling Support。

?2?Autoconnect Profiler

Enable the?Autoconnect Profiler?setting to profile your Unity WebGL content. For WebGL, it is not possible to connect the?Profiler
?to a running build as on other platforms, so you have to use this option to connect the content to the Editor. This is because the Profiler connection is handled using WebSockets on WebGL, but a web browser only allows outgoing connections from the content.

?启用 Autoconnect Profiler 设置以分析您的 Unity WebGL 内容。 对于 WebGL,无法连接 Profiler
? 到其他平台上正在运行的构建,因此您必须使用此选项将内容连接到编辑器。 这是因为 Profiler 连接是在 WebGL 上使用 WebSockets 处理的,但 Web 浏览器只允许来自内容的传出连接。

webGL的内容不能直接双击“index.html”文件运行

?3?Deep Profiling Support

Enable the?Deep Profiling Support?setting to make the Unity Profiler profile every function call in your application. For more information see the documentation on?Deep Profiling.

启用 Deep Profiling Support 设置以使 Unity Profiler 分析应用程序中的每个函数调用。 有关详细信息,请参阅 Deep Profiling 文档。

Player settings

?Other Settings

??Strip Engine Code

?Open?Other Settings?to access the?Strip Engine Code?option. This option is checked by default to enable code stripping for WebGL. With this option checked, Unity does not include code for any classes you don’t use. For example, if you don’t use any physics components or functions, the whole?physics engine
?is removed from your build. See the Stripping section below for more details.

?打开其他设置以访问剥离引擎代码选项。 默认情况下选中此选项以启用 WebGL 的代码剥离。 选中此选项后,Unity 不会包含您不使用的任何类的代码。 例如,如果您不使用任何物理组件或函数,则整个物理引擎
? 已从您的构建中删除。 有关更多详细信息,请参阅下面的剥离部分。

Publishing Settings

Enable Exceptions

?Open Publishing Settings to access Enable Exceptions. Enable Exceptions allows you to specify how unexpected code behavior (generally considered errors) is handled at run time. It has these options:

?打开发布设置以访问启用例外。 启用异常允许您指定在运行时如何处理意外的代码行为(通常认为是错误)。 它有以下选项:

  • Explicitly Thrown Exceptions Only?(default): Select this to capture exceptions which are explicitly specified from a?throw?statement in your?scripts
    ?and to also ensure?finally?blocks are called. Note that selecting this option makes the generated JavaScript code from your scripts longer and slower; This might only be an issue if scripts are the main bottleneck in your project.

仅显式抛出异常(默认):选择此选项可捕获从脚本中的 throw 语句显式指定的异常
? 并确保调用 finally 块
。 请注意,选择此选项会使从您的脚本生成的 JavaScript 代码变得更长更慢; 如果脚本是项目中的主要瓶颈,这可能只是一个问题。

Data Caching

To access?Data Caching, select?Publishing Settings?(File?>?Build Settings?>?Player Settings?>?WebGL?>?Publishing Settings). This enables the browser to cache the main data files into the IndexedDB database.

要访问数据缓存,请选择发布设置(文件 > 构建设置 > 播放器设置 > WebGL > 发布设置)。 这使浏览器能够将主要数据文件缓存到 IndexedDB 数据库中。

Using the default browser HTTP cache does not guarantee that the browser caches a particular response. This is because the browser HTTP cache has limited space, and the browser might not be able to cache files that are too large.

To improve your loading speed, IndexedDB allows you to cache files above the browser limit. When you cache more files, you increase the chance that downloaded content is available on the user’s machine during the next run of the build.

Data Caching only caches the?.data?files in the IndexedDB cache for HTTP responses. To cache AssetBundles, you need to enable Data Caching and override?unityInstance.Module.cacheControl(). To do this, make sure?Module.cacheControl(url)?returns?must-revalidate?for the requested AssetBundle URL. For example, you can override the unityInstance.Module.cacheControl() function in the fulfillment callback of the Promise that createUnityInstance() returns. For further information on createUnityInstance() see?WebGL: Compressed builds and server configuration.

自定义 shader引入

?这个应该是设置最多的地方,如果自定义的shader不引入,会出现材质丢失的粉红色

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2021-11-19 17:55:39  更:2021-11-19 17:56:03 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 23:29:35-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码