Unity WebGL 应用开发总结
zhezhongyun 2025-04-27 17:34 50 浏览
Unity WebGL 应用开发总结
1.开发环境
软件 | 版本 | |
Unity | 2020.1.0f1 | |
PyCharm | 2022.3.2 | |
Python | 3.7.3 |
2.编译WebGL
对 Unity 项目进行 WebGL 编译时,经常会出现如下问题:
1.Unable to parse Build/web.framework.js.gz! This can happen if build compression was enabled but web server hosting the content was misconfigured to not serve the file with HTTP Response Header “Content-Encoding: gzip” present. Check browser Console and Devtools Network tab to debug. 此时,通过 Build Settings -> PlayerSettings -> Publishing Settings 中勾选 Decompression Fallback(解压缩回退)。
2.Unable to parse
Build/acWeb.framework.js.unityweb! The file is corrupt, or compression was misconfigured? (check Content-Encoding HTTP Response Header on web server) 此时,在 Build Settings -> PlayerSettings -> Other Settings -> Rendering
- 将Color Space 设置为Gamma
- 将Lightmap Encoding 设置为NormalQuality
然后重新构建即可。
3.获取 URL 请求参数
在项目的 Assets 文件夹下创建 Plugins\WebGL 目录,在 WebGL 目录下新建一个文本文件 xxx.jslib(如:QYPlugin.jslib),并在文件中编写函数如下:
var QYPlugin = {
FindURLParameter : function()
{
var parameters = window.location.search;
var bufferSize = lengthBytesUTF8(parameters) + 1;
var buffer = _malloc(bufferSize);
stringToUTF8(parameters, buffer, bufferSize);
return buffer;
}
};
mergeInto(LibraryManager.library, QYPlugin);其中的方法不要写错,否则会导致 unity 打包不成功的问题出现。
然后,在 C# 脚本中通过如下方式来调用:
1.在脚本中添加引用
using UnityEngine;
using System.Runtime.InteropServices;2.引用
#if !UNITY_EDITOR&&UNITY_WEBGL
[DllImport("__Internal")]
private static extern string FindURLParameter();
#endif3.在需要的位置调用方法
#if !UNITY_EDITOR&&UNITY_WEBGL
string urlParameter = FindURLParameter();
Globals.SessionId = urlParameter.Substring(1);
#endif4.网络请求
对于 Unity' WebGL 应用,网络请求目前不支持 Socket 和 WebSocket,只支持 HTTP 请求方式,所以在一般情况下,后台采用 RestAPI 提供接口,Unity WebGL 通过 HTTP 方式连接到网络来执行网络请求并获取数据。
对于 Unity 的 HTTP 请求,支持三种方式:
- WWW(基于协程,不适用于线程)
- UnityWebRequest(基于协程,不适用于线程)
- HttpWebRequest(C#原生的HttpWebRequest,同步接口,阻塞等待结果返回,适用于线程)
对于 WWW 目前官方已经不支持,其余两种方式在 WebGL 中只能使用 UnityWebRequest。
对 UnityWebRequest 请求的封装代码如下:
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
using UnityEngine.Networking;
using LitJson;
using UnityEngine.SceneManagement;
public class QYHttp : MonoBehaviour
{
private static QYHttp _instance;
public static QYHttp instance
{
get
{
if (_instance == null)
{
GameObject go = new GameObject("QYHttp");
_instance = go.AddComponent<QYHttp>();
}
return _instance;
}
}
public void PostFormRequest(string url, WWWForm form=null, Action<bool, string> callBack = null)
{
StartCoroutine(_PostForm(url, form, callBack));
}
private IEnumerator _PostForm(string url, WWWForm form=null, Action<bool, string> callBack = null)
{
if (form == null)
{
form = new WWWForm();
form.AddField("tmp", "tmp");
}
UnityWebRequest request = UnityWebRequest.Post(url, form);
request.SetRequestHeader("content-type", "application/x-www-form-urlencoded");
request.downloadHandler = new DownloadHandlerBuffer();
yield return request.SendWebRequest();
string responseStr = "";
if (request.isNetworkError || request.isHttpError)
{
responseStr = request.error;
}
else
{
responseStr = request.downloadHandler.text;
}
if (callBack != null)
{
callBack(request.isNetworkError || request.isHttpError, responseStr);
}
}
public void PostAuthRequest(string url, JsonData data, Action<bool, string> callBack = null)
{
StartCoroutine(_PostAuth(url, data, callBack));
}
private IEnumerator _PostAuth(string url, JsonData data, Action<bool, string> callBack = null)
{
if (data == null)
{
data = new JsonData();
data["tmp"] = "tmp";
}
data["authorization"] = Globals.TokenType + " " + Globals.AccessToken;
string jsonstring = JsonMapper.ToJson(data);
string ciphertext = QYEncrypt.AESEncryString(jsonstring);
JsonData jsonData = new JsonData();
jsonData["value"] = ciphertext;
jsonData["size"] = jsonstring.Length;
byte[] bytes = Encoding.UTF8.GetBytes(JsonMapper.ToJson(jsonData));
UnityWebRequest request = new UnityWebRequest(url, "POST");
request.uploadHandler = new UploadHandlerRaw(bytes);
request.SetRequestHeader("Content-Type", "application/json;charset=utf-8");
request.downloadHandler = new DownloadHandlerBuffer();
yield return request.SendWebRequest();
if (request.responseCode == 401) SceneManager.LoadScene("Scenes/ErrorScene");
string responseStr = "";
if (request.isNetworkError || request.isHttpError)
{
responseStr = request.error;
}
else
{
responseStr = request.downloadHandler.text;
}
if (callBack != null)
{
callBack(request.isNetworkError || request.isHttpError, responseStr);
}
}
}以上代码封装的是两个 Post 方法,其中 PostFormRequest 是以表单数据为参数提交请求,PostAuthRequest 是携带请求令牌以 Json 数据为参数提交请求。
在携带请求令牌时没有使用 http Headers 的原因是:经过测试,通过 UnityWebRequest 的 SetRequestHeader 方法携带令牌在请求时不稳定,在服务端有时会出现获取不到令牌的情况。
所以,在封装 PostAuthRequest 方法时,使用了如下代码:
data["authorization"] = Globals.TokenType + " " + Globals.AccessToken;
string jsonstring = JsonMapper.ToJson(data);
string ciphertext = QYEncrypt.AESEncryString(jsonstring);
JsonData jsonData = new JsonData();
jsonData["value"] = ciphertext;
jsonData["size"] = jsonstring.Length;将 authorization 参数直接写到 Json 格式的数据中,然后对 Json 字符串数据进行加密,加密后提交的数据只有两个字段:
- value:加密后的字符串
- size:原始字符串长度
5.数据传输
由于携带令牌出现了不稳定数据传输的情况,所以,我们将令牌与请求体合并通过 Json 格式进行数据传输,鉴于此,数据传输需要加密,加密采用的是 AES 算法,加密代码如下:
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
using UnityEngine;
public class QYEncrypt
{
private static string AesKey = "****************"; // 可以是16/24/32位
public static string AESEncryString(string text)
{
byte[] bytes = Encoding.UTF8.GetBytes(text);
RijndaelManaged rijndael = new RijndaelManaged();
rijndael.Key = Encoding.UTF8.GetBytes(AesKey);
// rijndael.IV = Encoding.UTF8.GetBytes(AesIv);
rijndael.Mode = CipherMode.ECB;
rijndael.Padding = PaddingMode.PKCS7;
ICryptoTransform cryptoTransform = rijndael.CreateEncryptor();
byte[] resultBytes = cryptoTransform.TransformFinalBlock(bytes, 0, bytes.Length);
string AesStr = Convert.ToBase64String(resultBytes);
return AesStr;
}
public static string AESDecryString(string text)
{
byte[] bytes = Convert.FromBase64String(text);
RijndaelManaged rijndael = new RijndaelManaged();
rijndael.Key = Encoding.UTF8.GetBytes(AesKey);
// rijndael.IV = Encoding.UTF8.GetBytes(AesIv);
rijndael.Mode = CipherMode.ECB;
rijndael.Padding = PaddingMode.PKCS7;
ICryptoTransform cryptoTransform = rijndael.CreateDecryptor();
byte[] resultBytes = cryptoTransform.TransformFinalBlock(bytes, 0, bytes.Length);
string AesStr = Encoding.UTF8.GetString(resultBytes);
return AesStr;
}
}后端采用 Python 的 FastApi 实现 RestAPI ,后端的解密算法如下:
# coding: utf-8
import base64
from Crypto.Cipher import AES
AesKey = "*****************"; #可以是16/24/32位
def pkcs7padding(text):
"""明文使用PKCS7填充"""
need_size = 16
text_length = len(text)
bytes_length = len(text.encode('utf-8'))
padding_size = text_length if (bytes_length == text_length) else bytes_length
padding = need_size - padding_size % need_size
padding_text = chr(padding) * padding
return text + padding_text
def AESEncryString(text=None):
text = pkcs7padding(text)
aes = AES.new(key=AesKey.encode("utf-8"), mode=AES.MODE_ECB)
en_text = aes.encrypt(text.encode('utf-8'))
result = str(base64.b64encode(en_text), encoding='utf-8')
return result
def AESDecryString(ciphertext=None):
aes = AES.new(key=AesKey.encode('utf-8'), mode=AES.MODE_ECB)
if len(ciphertext) % 3 == 1:
ciphertext += "=="
elif len(ciphertext) % 3 == 2:
ciphertext += "="
content = base64.b64decode(ciphertext)
text = aes.decrypt(content).decode('utf-8')
return text
if __name__ == '__main__':
res = AESEncryString(text="hello,呼和浩特")
print("加密后的密文是:",res)
res = AESDecryString(ciphertext=res)
print("密文解密后的明文是:",res)后端令牌校验算法:
# Token校验
def verify_token(token: str, user_agent: str):
try:
payload = jwt.decode(token, settings.SECRET_KEY, algorithms=[settings.ALGORITHM])
logger.info(payload)
sub = json.loads(payload['sub'])
if sub['user_agent'] != user_agent:
return False
except Exception as ex:
logger.info(str(ex))
return False
return True
async def authorized(request: Request):
data: dict = await request.json()
value = data.get('value')
size = data.get('size')
if value is None or size is None: return False
plaintext = AESDecryString(value)
print(plaintext)
jsondata: dict = json.loads(plaintext[0:size])
# 若不存在authorization则返回鉴权失败
if not 'authorization' in jsondata.keys():
return False
authorization = jsondata.get('authorization')
logger.info(authorization)
# 若authorization类型不是Bearer则返回鉴权失败
if not authorization.startswith('Bearer'):
return False
token = authorization[7:]
logger.info(token)
# 若令牌校验失败则返回鉴权失败
logger.info(request.headers['user-agent'])
if not verify_token(token, request.headers['user-agent']):
return False
return TrueRestAPI 对应的业务代码中,需要在每次请求时对令牌进行校验,而不是在中间件中进行校验,其代码类似于:
@router.post(path='/save_all_devices')
async def save_all_devices(request: Request, value: str = Body(..., embed=True), size: int = Body(..., embed=True)):
if (not await authorized(request)): raise HTTPException(status_code=401)FastApi 跨域需要在主程序中增加代码如下:
app.add_middleware(
CORSMiddleware,
allow_origins=['*'],
allow_credentials=False,
allow_methods=["*"],
allow_headers=["*"],
)6.WebGL 页面自适应显示
Unity 项目编译为 WebGL 页面后,如果想要在浏览器中让页面自适应显示,需要对编译后的 html 文件和 css 文件做一些修改。对于 Unity 2020.1.0f1 版本编译后的调整记录如下:
- 生成的 index.html:
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | devicefix</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
</head>
<body>
<div id="unity-container" class="unity-desktop">
<canvas id="unity-canvas"></canvas>
<div id="unity-loading-bar">
<div id="unity-logo"></div>
<div id="unity-progress-bar-empty">
<div id="unity-progress-bar-full"></div>
</div>
</div>
<div id="unity-footer">
<div id="unity-webgl-logo"></div>
<div id="unity-fullscreen-button"></div>
<div id="unity-build-title">devicefix</div>
</div>
</div>
<script>
var buildUrl = "Build";
var loaderUrl = buildUrl + "/webgl.loader.js";
var config = {
dataUrl: buildUrl + "/webgl.data.unityweb",
frameworkUrl: buildUrl + "/webgl.framework.js.unityweb",
codeUrl: buildUrl + "/webgl.wasm.unityweb",
streamingAssetsUrl: "StreamingAssets",
companyName: "DefaultCompany",
productName: "devicefix",
productVersion: "0.1",
};
var container = document.querySelector("#unity-container");
var canvas = document.querySelector("#unity-canvas");
var loadingBar = document.querySelector("#unity-loading-bar");
var progressBarFull = document.querySelector("#unity-progress-bar-full");
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
container.className = "unity-mobile";
config.devicePixelRatio = 1;
} else {
canvas.style.width = "1024px";
canvas.style.height = "768px";
}
loadingBar.style.display = "block";
var script = document.createElement("script");
script.src = loaderUrl;
script.onload = () => {
createUnityInstance(canvas, config, (progress) => {
progressBarFull.style.width = 100 * progress + "%";
}).then((unityInstance) => {
loadingBar.style.display = "none";
fullscreenButton.onclick = () => {
unityInstance.SetFullscreen(1);
};
}).catch((message) => {
alert(message);
});
};
document.body.appendChild(script);
</script>
</body>
</html>- 生成的 style.css:
body { padding: 0; margin: 0 }
#unity-container { position: absolute }
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { background: #231F20 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-dark.png') no-repeat center }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-dark.png') no-repeat center }
#unity-footer { position: relative }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }修改如下:
1.修改 index.html 文件中的如下内容:
<div id="unity-footer">为
<div id="unity-footer" style="display:none;">将页面中下面的 logo、应用名称、全屏按钮等隐藏掉。
2.修改 index.html 文件中的如下内容:
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
container.className = "unity-mobile";
config.devicePixelRatio = 1;
} else {
canvas.style.width = "1024px";
canvas.style.height = "768px";
}将 else 语句体修改为:
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;3.在 style.css 文件的末尾增加如下代码:
html,body{width:100%;height:100%;margin:0;padding:0;overflow:hidden;}
#unity-canvas {width: 100%; height: 100%;}
#unity-container{width: 100%; height: 100%;}7.WebGL 无法输入中文
Unity 发布为 WebGL 后,InputField 无法接受中文输入,原因为 Unity 在 WebGL 平台下对 IME 的支持有问题。Unity 与 IME 的官方描述:
解决方法:
使用github包【WebGLInput】,地址:
https://github.com/kou-yeung/WebGLInput
包介绍:
WebGLInput
IME for Unity WebGL ( Support TextMesh Pro from Unity2018.2 )
support “copy and paste”
support "tab" and "shift+tab" change focus to other InputField
support mobile. (Experiment)
DEMO
https://unityroom.com/games/webglinput
How to use
1.download WebGLSupport.unitypackage and import to project
2.add "WebGLInput" Component to InputField GameObject
3.build and run!!
no need to setting anything.
insert \t use tab key instead of changing focus
Add "WEBGLINPUT_TAB" to Scripting Define Symbols.
and check "Enable Tab Text" at WebGLInput.
使用方法:
1、在工程中导入Unity包【WebGLSupport.unitypackage】
2、在需要输入中文的 InputField 组件上挂载脚本【WebGLInput】
8.模型质量不高,锯齿严重
发布项目之前要查看 Unity 的 Quality Settings 是否设置正确,当出现的问题是模型锯齿比较明显时,需要调整 Anti Aliasing 为8倍,默认是2倍;为了发布出来的项目更加适合于 WebGL,将 Level 设置为对应的选项,设置为 Very High 最为适合 WebGL。具体操作步骤:
Edit -> Project Settings -> Quality,设置 Anti Aliasing 为 8x;
在 Quality 设置的顶部 Quality 部分设置,对 Levels 为 WebGL 列的 Default 行选择 Very High;
设置好后 build 即可。
相关推荐
- Python入门学习记录之一:变量_python怎么用变量
-
写这个,主要是对自己学习python知识的一个总结,也是加深自己的印象。变量(英文:variable),也叫标识符。在python中,变量的命名规则有以下三点:>变量名只能包含字母、数字和下划线...
- python变量命名规则——来自小白的总结
-
python是一个动态编译类编程语言,所以程序在运行前不需要如C语言的先行编译动作,因此也只有在程序运行过程中才能发现程序的问题。基于此,python的变量就有一定的命名规范。python作为当前热门...
- Python入门学习教程:第 2 章 变量与数据类型
-
2.1什么是变量?在编程中,变量就像一个存放数据的容器,它可以存储各种信息,并且这些信息可以被读取和修改。想象一下,变量就如同我们生活中的盒子,你可以把东西放进去,也可以随时拿出来看看,甚至可以换成...
- 绘制学术论文中的“三线表”具体指导
-
在科研过程中,大家用到最多的可能就是“三线表”。“三线表”,一般主要由三条横线构成,当然在变量名栏里也可以拆分单元格,出现更多的线。更重要的是,“三线表”也是一种数据记录规范,以“三线表”形式记录的数...
- Python基础语法知识--变量和数据类型
-
学习Python中的变量和数据类型至关重要,因为它们构成了Python编程的基石。以下是帮助您了解Python中的变量和数据类型的分步指南:1.变量:变量在Python中用于存储数据值。它们充...
- 一文搞懂 Python 中的所有标点符号
-
反引号`无任何作用。传说Python3中它被移除是因为和单引号字符'太相似。波浪号~(按位取反符号)~被称为取反或补码运算符。它放在我们想要取反的对象前面。如果放在一个整数n...
- Python变量类型和运算符_python中变量的含义
-
别再被小名词坑哭了:Python新手常犯的那些隐蔽错误,我用同事的真实bug拆给你看我记得有一次和同事张姐一起追查一个看似随机崩溃的脚本,最后发现罪魁祸首竟然是她把变量命名成了list。说实话...
- 从零开始:深入剖析 Spring Boot3 中配置文件的加载顺序
-
在当今的互联网软件开发领域,SpringBoot无疑是最为热门和广泛应用的框架之一。它以其强大的功能、便捷的开发体验,极大地提升了开发效率,成为众多开发者构建Web应用程序的首选。而在Spr...
- Python中下划线 ‘_’ 的用法,你知道几种
-
Python中下划线()是一个有特殊含义和用途的符号,它可以用来表示以下几种情况:1在解释器中,下划线(_)表示上一个表达式的值,可以用来进行快速计算或测试。例如:>>>2+...
- 解锁Shell编程:变量_shell $变量
-
引言:开启Shell编程大门Shell作为用户与Linux内核之间的桥梁,为我们提供了强大的命令行交互方式。它不仅能执行简单的文件操作、进程管理,还能通过编写脚本实现复杂的自动化任务。无论是...
- 一文学会Python的变量命名规则!_python的变量命名有哪些要求
-
目录1.变量的命名原则3.内置函数尽量不要做变量4.删除变量和垃圾回收机制5.结语1.变量的命名原则①由英文字母、_(下划线)、或中文开头②变量名称只能由英文字母、数字、下画线或中文字所组成。③英文字...
- 更可靠的Rust-语法篇-区分语句/表达式,略览if/loop/while/for
-
src/main.rs://函数定义fnadd(a:i32,b:i32)->i32{a+b//末尾表达式}fnmain(){leta:i3...
- C++第五课:变量的命名规则_c++中变量的命名规则
-
变量的命名不是想怎么起就怎么起的,而是有一套固定的规则的。具体规则:1.名字要合法:变量名必须是由字母、数字或下划线组成。例如:a,a1,a_1。2.开头不能是数字。例如:可以a1,但不能起1a。3....
- Rust编程-核心篇-不安全编程_rust安全性
-
Unsafe的必要性Rust的所有权系统和类型系统为我们提供了强大的安全保障,但在某些情况下,我们需要突破这些限制来:与C代码交互实现底层系统编程优化性能关键代码实现某些编译器无法验证的安全操作Rus...
- 探秘 Python 内存管理:背后的神奇机制
-
在编程的世界里,内存管理就如同幕后的精密操控者,确保程序的高效运行。Python作为一种广泛使用的编程语言,其内存管理机制既巧妙又复杂,为开发者们提供了便利的同时,也展现了强大的底层控制能力。一、P...
- 一周热门
- 最近发表
- 标签列表
-
- HTML 教程 (33)
- HTML 简介 (35)
- HTML 实例/测验 (32)
- HTML 测验 (32)
- JavaScript 和 HTML DOM 参考手册 (32)
- HTML 拓展阅读 (30)
- HTML文本框样式 (31)
- HTML滚动条样式 (34)
- HTML5 浏览器支持 (33)
- HTML5 新元素 (33)
- HTML5 WebSocket (30)
- HTML5 代码规范 (32)
- HTML5 标签 (717)
- HTML5 标签 (已废弃) (75)
- HTML5电子书 (32)
- HTML5开发工具 (34)
- HTML5小游戏源码 (34)
- HTML5模板下载 (30)
- HTTP 状态消息 (33)
- HTTP 方法:GET 对比 POST (33)
- 键盘快捷键 (35)
- 标签 (226)
- opacity 属性 (32)
- transition 属性 (33)
- 1-1. 变量声明 (31)
