Unity真机显示调试信息 IngameDebugConsole v1.6.1 野区**叔叔上传267KB文件格式unitypackageunity 用法:只需要将预制体拖到场景中。 作用:在Unity打包后直接在项目内点开面板查看各种Debug信息,Log,Error,Warnning 非常适合用于开发期间需要打包Android或其他平台时,可以和在UnityEditor下一样查看详细的Debug信息。
Use DebugLogConsole.AddCommandInstance( string command, string description, string methodName, object instance ): using UnityEngine; using IngameDebugConsole; public class TestScript : MonoBehaviour { void Start() { DebugLogConsole.AddCommandInstance( "cube", "Creates a cube at specified position"...
using UnityEngine; using IngameDebugConsole; public class TestScript : MonoBehaviour { [ConsoleMethod( "cube", "Creates a cube at specified position" )] public static void CreateCubeAt( Vector3 position ) { GameObject.CreatePrimitive( PrimitiveType.Cube ).transform.position = position; } } ...
插件导入 在Unity商城搜索“debug”就可以找到这款插件,类似的还有其他一些插件。这个插件体积小,更新也比较即时。 导入的内容在【Plugins/IngameDebugConsole】目录下。 插件使用 将【Plugins/IngameDebugConsole】目录下的【IngameDebugConsole】预制件添加到场景中即可,这是会在平米右边的中间出现一个小的提示图标。
好在有两个好用的Unity插件,”In-game Debug Console“和”Runtime Inspector&Hierarchy“。 In-game Debug Console 按照字面意思很好理解这个插件,就是在项目运行中查看Console界面。 1.打开Asset Store,下载In-game Debug Console插件并将其导入所需要的项目中。
链接:https://pan.baidu.com/s/1AxYO_oC6lmCzytrt1CkbVA?pwd=bvwh 提取码: bvwh 测试使用Unity版本: 2019.4.9f1 使用说明: 1.下载之后解压文件夹,将 文件目录 覆盖到工程中即可 2.选中 IngameDebugConsole 预制 预制 3.将IngameDebugConsole拖拽到场景上 添加 4.最后运行项目,添加完成。
首先是我们Runtime的Cmd,推荐:https://github.com/yasirkula/UnityIngameDebugConsole插件 下载之后我们只需要把 放到场景中即可 如果我们想要在游戏中根据命令执行某个方法(这是最简单直接的用法,同样还支持参数传递,返回值,参数重定向等多种功能,可以去插件Readme查看更多) ...
If you want to pause the game when the console opens create a script that inherits fromIPauseHandlerand assign an instance of it toDebugConsole.PauseHandler. Attach the script to the debug console game-object. Additionally, you can use the built-in classGenericPauseHandler. ...
In-game Debug Console插件可以在打包发布以后,程序运行时方便的看到控制台信息,在一些特定程序开发的调试过程中非常有帮助。例如在开发一些AR程序的时候,如果官方没有提供支持,则只能将程序发布到移动设备后才能调试,这个时候,能在移动设备看到控制台信息对于开发会方便很多。 插件导入 在Unity商城搜索“debug”就可以...
Unity商城地址:In-game Debug Console | GUI Tools | Unity Asset Store 功能介绍:这是个运行时查看日志的插件,方便开发者发布后运行有问题,但是编辑器中正常运行对比差异,查看日志用,几乎完美复刻的Unity编辑器的Console查看日志的部分。 二、【GitHub插件清单列表】 ...