当前位置:网站首页>Unity SKFramework框架(二十二)、Runtime Console 运行时调试工具
Unity SKFramework框架(二十二)、Runtime Console 运行时调试工具
2022-07-05 09:20:00 【CoderZ1010】
目录
一、简介
Runtime Console工具可以让我们在程序Build打包后运行时,查看Log日志信息,并且可以生成日志文件。该工具已经上传至SKFramework框架中的Package Manager中,如图所示:
SKFramework框架开源地址:
https://github.com/136512892/SKFramework
二、使用说明
1.下载安装
通过菜单SKFramework/PackageManager打开开发工具包管理器:
搜索RuntimeConsole工具,点击Install下载并安装:
2.挂载组件
新建一个空物体,为其添加RuntimeConsole组件:
参数说明:
Show Info | 是否显示普通日志信息 |
Show Warn | 是否显示告警日志信息 |
Show Error | 是否显示错误日志信息 |
Show Time | 是否显示日志打印时间 |
3.快捷键
在程序运行时通过快捷键LeftCtrl+M打开和关闭控制台窗口
ps:如果快捷键有冲突可在代码中更改
private void Update()
{
//快捷键打开/关闭
if (Input.GetKey(KeyCode.LeftControl) && Input.GetKeyDown(KeyCode.M))
{
toggle = !toggle;
}
}
4.日志详情
选中任一项日志,下方窗口中会显示该日志的详细信息:
点击下方Copy按钮可将日志详情复制到系统粘贴板,可使用Ctrl+V粘贴到任意其它地方进行分析。
5.清空日志
点击左上角Clear按钮可以清空当前的所有日志信息:
6.日志文件
点击右上角的FILE按钮,可以生成日志文件到StreamingAssets/Log路径下
边栏推荐
- Codeforces Round #648 (Div. 2) D. Solve The Maze
- Nips2021 | new SOTA for node classification beyond graphcl, gnn+ comparative learning
- Shutter uses overlay to realize global pop-up
- 云计算技术热点
- 嗨 FUN 一夏,与 StarRocks 一起玩转 SQL Planner!
- notepad++
- Blogger article navigation (classified, real-time update, permanent top)
- 【组队 PK 赛】本周任务已开启 | 答题挑战,夯实商品详情知识
- Editor use of VI and VIM
- Applet network data request
猜你喜欢
随机推荐
Introduction Guide to stereo vision (2): key matrix (essential matrix, basic matrix, homography matrix)
L'information et l'entropie, tout ce que vous voulez savoir est ici.
Rebuild my 3D world [open source] [serialization-3] [comparison between colmap and openmvg]
Applet customization component
[code practice] [stereo matching series] Classic ad census: (5) scan line optimization
Kotlin introductory notes (VII) data class and singleton class
Transfer learning and domain adaptation
Introduction Guide to stereo vision (5): dual camera calibration [no more collection, I charge ~]
2011-11-21 training record personal training (III)
Blogger article navigation (classified, real-time update, permanent top)
高性能Spark_transformation性能
notepad++
一题多解,ASP.NET Core应用启动初始化的N种方案[上篇]
OpenGL - Coordinate Systems
fs. Path module
基于STM32单片机的测温仪(带人脸检测)
Hosting environment API
一文详解图对比学习(GNN+CL)的一般流程和最新研究趋势
2309. 兼具大小写的最好英文字母
.NET服务治理之限流中间件-FireflySoft.RateLimit