UP | HOME

UnityTools

Table of Contents

UnityTools note.

<!– more –>

Tools

CacheServer

CacheServer github 官网地址 https://github.com/Unity-Technologies/unity-cache-server
CacheServer 使用说明 https://docs.unity3d.com/Manual/CacheServer.html

# 安装 nodejs 请参考 NodeJs.org 文档

# CacheServer github 官网有详细安装使用说明
npm install unity-cache-server -g

# 显示帮助信息
unity-cache-server -h

# 显示版本信息
unity-cache-server -V

# 启动 Cache Server
##  --cache-path "xxx-path" 指定 cache 文件存储路径
##  -l 5 指定日志等级为 debug(5)
unity-cache-server -l 5 --cache-path "D:\Downloads\TMP"

# Unity 客户端配置
在 Edit/Preferences/CacheServer 下设置 CacheServerMode 为 Remote, IP Address 设置为 127.0.0.1:8126
点击 CheckConnection 按钮查看配置是否成功

Visual Studio 调试 Editor|真机

需要注意的是真机调试时,代码是被裁剪过的,在被裁剪掉的代码处设置断点是不生效的。

https://docs.microsoft.com/en-us/visualstudio/cross-platform/using-visual-studio-tools-for-unity?view=vs-2019

Plugins

Profiler

Shader Tools

参考链接