unity3d for web

        时光噶然  一晃好多年过去了(干了5年的u3d游戏),记得最后一次使用的版本好像是 unity 2017。 那个是 unity3d for webgl  还需要装个插件。用起来很蛋疼。 最近做一个小项目 在选择是用 Layabox  还是 cocosCreate 的时候 我想起了老战友 Unity3d(因为是3D漫游的项目)。抱着试一试的态度 看了下最新版的 Unity 2023.2.14f1. 试了下 不错呀  现在不用预装 web 插件,就能直接跑 加上  URP  的应用 不光效果好,体验也是更好了

unity3d build for web

Unable to parse Build/build.framework.js.gz!

Unable to parse Build/build.framework.js.gz!

发布的时候报了错:

看了网上好多人 的方案如下:

  •  build 打包 不压缩: 由于是 web 环境,我这边不压缩 是 70m 左右,压缩 是28m, 我个人还是 觉得压缩下好  (不推荐这种方式)
  •  Decompression Fallback 选中: 我这边测试这个方案不能

打开的正确姿势:

官方文档这里介绍:

Unity - Manual: Server configuration code samplesicon-default.png?t=N7T8https://docs.unity3d.com/2023.2/Documentation/Manual/webgl-server-configuration-code-samples.html

  • IIS
    <?xml version="1.0" encoding="UTF-8"?>
    <!--The following server configuration can be used for compressed Web builds without decompression fallback.This configuration file should be uploaded to the server as "<Application Folder>/Build/web.config".NOTE: To host compressed Web builds without decompression fallback, you need to install the "URL Rewrite" IIS module on the server.
    Otherwise, IIS will throw an exception when using this configuration file.
    This module is available at https://www.iis.net/downloads/microsoft/url-rewrite.
    --><configuration><system.webServer><!--Compressed Unity builds without decompression fallback can't be properly hosted on a server whichhas static compression enabled because this might result in the build files being compressed twice.The following line disables static server compression.--><urlCompression doStaticCompression="false" /><!-- To host compressed Unity builds, the correct mimeType should be set for the compressed build files. --><staticContent><!--NOTE: IIS will throw an exception if a mimeType is specified multiple times for the same extension.To avoid possible conflicts with configurations that are already on the server, you should remove the mimeType for the corresponding extension using the <remove> element,before adding mimeType using the <mimeMap> element.--><!-- The following lines are required for builds compressed with gzip, which don't include decompression fallback. --><remove fileExtension=".data.gz" /><mimeMap fileExtension=".data.gz" mimeType="application/gzip" /><!-- The correct MIME type here would be application/octet-stream, but due to Safari bug https://bugs.webkit.org/show_bug.cgi?id=247421, it's preferable to use MIME Type application/gzip instead. --><remove fileExtension=".wasm.gz" /><mimeMap fileExtension=".wasm.gz" mimeType="application/wasm" /><remove fileExtension=".js.gz" /><mimeMap fileExtension=".js.gz" mimeType="application/javascript" /><remove fileExtension=".symbols.json.gz" /><mimeMap fileExtension=".symbols.json.gz" mimeType="application/octet-stream" /><!-- The following lines are required for builds compressed with Brotli, which don't include decompression fallback. --><remove fileExtension=".data.br" /><mimeMap fileExtension=".data.br" mimeType="application/octet-stream" /><remove fileExtension=".wasm.br" /><mimeMap fileExtension=".wasm.br" mimeType="application/wasm" /><remove fileExtension=".js.br" /><mimeMap fileExtension=".js.br" mimeType="application/javascript" /><remove fileExtension=".symbols.json.br" /><mimeMap fileExtension=".symbols.json.br" mimeType="application/octet-stream" /></staticContent><!--Hosting compressed Unity builds without decompression fallback relies on native browser decompression,therefore a proper "Content-Encoding" response header should be added for the compressed build files.NOTE: IIS will throw an exception if the following section is used without the "URL Rewrite" module installed.Download the "URL Rewrite" module from https://www.iis.net/downloads/microsoft/url-rewrite--><rewrite><outboundRules><!--NOTE: IIS will throw an exception if the same rule name is used multiple times.To avoid possible conflicts with configurations that are already on the server, you should remove the mimeType for the corresponding extension using the <remove> element,before adding mimeType using the <mimeMap> element.--><!-- The following section is required for builds compressed with gzip, which don't include decompression fallback. --><remove name="Append gzip Content-Encoding header" /><rule name="Append gzip Content-Encoding header"><match serverVariable="RESPONSE_Content-Encoding" pattern=".*" /><conditions><add input="{REQUEST_FILENAME}" pattern="\.gz$" /></conditions><action type="Rewrite" value="gzip" /></rule><!-- The following section is required for builds compressed with Brotli, which don't include decompression fallback. --><remove name="Append brotli Content-Encoding header" /><rule name="Append brotli Content-Encoding header"><match serverVariable="RESPONSE_Content-Encoding" pattern=".*" /><conditions><add input="{REQUEST_FILENAME}" pattern="\.br$" /></conditions><action type="Rewrite" value="br" /></rule></outboundRules></rewrite></system.webServer>
    </configuration>
  • nginx
  • apache

应为这边是 IIS 环境我们着重 看下 IIS:

  1. URL Rewrite : The Official Microsoft IIS Site ,需要从这里安装
  2. 在你发布的目录下 Build 目录新建 web.config 内容就是上面的

配置完毕就能跑起来了:

经测试:火狐 谷歌都ok,edge 浏览器没跑起来。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/578674.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

阿里云魔搭发起“ModelScope-Sora开源计划”,将为中国类Sora模型开发提供一站式工具链

在2024年3月23日的全球开发者先锋大会上&#xff0c;阿里云的魔搭社区宣布了一个新计划&#xff1a;“ModelScope-Sora开源计划”。这个计划旨在通过开源方式&#xff0c;帮助中国在Sora模型类型上做出更多创新。这个计划提供了一整套工具&#xff0c;包括处理数据的工具、多模…

JUC:synchronized优化——锁的升级过程(偏向锁->轻量级锁->重量级锁)以及内部实现原理

文章目录 锁的类型轻量级锁重量级锁自旋优化偏向锁偏向锁的细节偏向锁的撤销批量重偏向批量撤销锁消除 锁的类型 重量级锁、轻量级锁、偏向锁。 加锁过程&#xff1a;偏向->轻量级->重量级 轻量级锁 轻量级锁的使用场景&#xff1a;如果一个对象虽然有多线程要加锁&am…

数据结构与算法(2)顺序表的初始化、插入、打印、删除、查找元素——C语言版

目录 1.前言 2.头文件的定义 3.菜单栏的设置 4.顺序表的初始化 5.添加元素 6.打印元素 7.查找元素 8.删除元素 9.插入元素 10.主函数 11.完整的代码实现 1.前言 数据结构包括三个方面 逻辑结构存储结构运算 而线性表有两种典型的存储结构 顺序存储结构链式存储结构 具体关系可…

提取gdip-yolo与ia-seg中的图像自适应模块进行图像去雾与亮度增强

gdip-yolo与ia-seg都是一种将图像自适应模块插入模型前面,从而提升模型在特定数据下检测能力的网络结构。gdip-yolo提出了gdip模块,可以应用到大雾数据与低亮度数据(夜晚环境),然后用于目标检测训练;ia-seg将ia-yolo中的代码修改了一下修车了ipam模块,应用到低亮度数据(…

在线随机密码生成器源码

纯HTML&#xff0c;该去的已去掉&#xff0c;该简化的简化&#xff0c;最高支持32位混合随机密码生成。 源码下载&#xff1a;在线随机密码生成器源码

Golang生成UUID

安装依赖 go get -u github.com/google/uuid文档 谷歌UUID文档 示例 函数签名func NewV7() ( UUID ,错误) func (receiver *basicUtils) GenerateUUID() uuid.UUID {return uuid.Must(uuid.NewV7()) } uid : GenerateUUID()

RH850从0搭建Autosar开发环境【3X】- Davinci Configurator之RTE模块配置详解(上)

RTE模块配置详解 - 上 一、RTE模块配置实操1.1 打开RTE模块1.2 RTE模块错误消除在这里插入图片描述 这里我们利用工具的自动处理功能。二、Configurator工具Validation总结本节我们就手把手详解RTE配置实现,其实也没有什么过多的操作。。。这个模块更多是工具自动处理的。 一、…

Dockerfile和Docker-compose

一、概述 Dockerfile和Docker Compose是用于构建和管理 Docker 容器的两个工具&#xff0c;但它们的作用和使用方式不同。 Dockerfile Dockerfile 是一个文本文件&#xff0c;用于定义 Docker 镜像的构建规则。它包含一系列指令&#xff0c;如 FROM&#xff08;指定基础镜像…

吴恩达2022机器学习专项课程(一) 4.3 梯度下降的直观理解

问题预览/关键词 本节内容是&#xff1f;J对w求导的含义是&#xff1f;如何确定切线的方向&#xff1f;w在函数J递增处的切线方向是&#xff1f;导数项为正数&#xff0c;w和函数J的关系是&#xff1f;w在函数J递减处的切线方向是&#xff1f;导数项为负数&#xff0c;w和函数…

ES6中的Set集合

Set集合 ES6 提供了新的数据结构Set(集合)。 它类似于数组&#xff0c;但成员的值都是唯一的集合实现了 iterator 接口&#xff0c;所以可以使用「扩展运算符」和[for…of…」进行遍历集合的属性和方法 集合的属性和方法&#xff1a; 1&#xff09;size&#xff0c;返回集合的元…

bizcharts中LineChart时间戳使用moment转化出现Invalid Date

文章目录 一、前言1.1、问题1.2、解决 二、bizcharts三、moment.js四、在线源码五、最后 一、前言 1.1、问题 最近在使用bizcharts绘制折线图LineChart的时候&#xff0c;发现X轴的时间显示成了Invalid Date。如下图所示&#xff1a; 发现是后端返回了时间戳字符串"1572…

matlab 复制点云

目录 一、概述1、算法概述2、主要函数3、参考文献二、代码实现三、结果展示四、参考链接本文由CSDN点云侠原创,原文链接。如果你不是在点云侠的博客中看到该文章,那么此处便是不要脸的爬虫。 一、概述 1、算法概述