当前位置:网站首页>Unity skframework framework (XXII), runtime console runtime debugging tool
Unity skframework framework (XXII), runtime console runtime debugging tool
2022-07-05 09:24:00 【CoderZ1010】
Catalog
One 、 brief introduction
Runtime Console Tools allow us to program Build Run time after packaging , see Log Log information , And can generate log files . The tool has been uploaded to SKFramework In the framework Package Manager in , As shown in the figure :
SKFramework Framework open source address :
https://github.com/136512892/SKFramework
Two 、 Instructions
1. Download and install
Through the menu SKFramework/PackageManager Open the development kit manager :
Search for RuntimeConsole Tools , Click on Install Download and install :
2. Mount components
Create a new empty object , To add RuntimeConsole Components :
Parameter description :
Show Info | Whether to display general log information |
Show Warn | Whether to display alarm log information |
Show Error | Whether to display error log information |
Show Time | Whether to display the log printing time |
3. Shortcut key
When the program is running, use the shortcut key LeftCtrl+M Open and close the console window
ps: If the shortcut key conflicts, you can change it in the code
private void Update()
{
// The shortcut key opens / close
if (Input.GetKey(KeyCode.LeftControl) && Input.GetKeyDown(KeyCode.M))
{
toggle = !toggle;
}
}
4. Log details
Select any log , The details of the log will be displayed in the window below :
Click below Copy Button to copy the log details to the system pasteboard , You can use Ctrl+V Paste it anywhere else for analysis .
5. Clear the log
Click on the top left corner Clear Button can clear all current log information :
6. Log files
Click on the FILE Button , You can generate log files to StreamingAssets/Log Under the path
边栏推荐
- Wxml template syntax
- Greendao reported an error in qigsaw, could not init daoconfig
- Codeworks round 638 (Div. 2) cute new problem solution
- . Net service governance flow limiting middleware -fireflysoft RateLimit
- Generate confrontation network
- 阿里十年测试带你走进APP测试的世界
- Introduction Guide to stereo vision (1): coordinate system and camera parameters
- Android 隐私沙盒开发者预览版 3: 隐私安全和个性化体验全都要
- np. allclose
- [ctfhub] Title cookie:hello guest only admin can get flag. (cookie spoofing, authentication, forgery)
猜你喜欢
Kotlin introductory notes (VIII) collection and traversal
[code practice] [stereo matching series] Classic ad census: (6) multi step parallax optimization
编辑器-vi、vim的使用
Can't find the activitymainbinding class? The pit I stepped on when I just learned databinding
Summary and Reflection on issues related to seq2seq, attention and transformer in hands-on deep learning
高性能Spark_transformation性能
信息与熵,你想知道的都在这里了
Summary of "reversal" problem in challenge Programming Competition
Kotlin introductory notes (VII) data class and singleton class
LeetCode 556. 下一个更大元素 III
随机推荐
一题多解,ASP.NET Core应用启动初始化的N种方案[上篇]
一篇文章带你走进cookie,session,Token的世界
Introduction Guide to stereo vision (5): dual camera calibration [no more collection, I charge ~]
A detailed explanation of the general process and the latest research trends of map comparative learning (gnn+cl)
Kotlin introductory notes (II) a brief introduction to kotlin functions
2310. 个位数字为 K 的整数之和
高性能Spark_transformation性能
Generate confrontation network
c语言指针深入理解
Solution to the problems of the 17th Zhejiang University City College Program Design Competition (synchronized competition)
Causes and appropriate analysis of possible errors in seq2seq code of "hands on learning in depth"
C语言-从键盘输入数组二维数组a,将a中3×5矩阵中第3列的元素左移到第0列,第3列以后的每列元素行依次左移,原来左边的各列依次绕到右边
[ctfhub] Title cookie:hello guest only admin can get flag. (cookie spoofing, authentication, forgery)
.NET服务治理之限流中间件-FireflySoft.RateLimit
Introduction Guide to stereo vision (3): Zhang calibration method of camera calibration [ultra detailed and worthy of collection]
C language - input array two-dimensional array a from the keyboard, and put 3 in a × 5. The elements in the third column of the matrix are moved to the left to the 0 column, and the element rows in ea
一题多解,ASP.NET Core应用启动初始化的N种方案[上篇]
scipy.misc.imread()
Codeforces round 684 (Div. 2) e - green shopping (line segment tree)
编辑器-vi、vim的使用