首页 > 代码库 > android下调试unity3d应用
android下调试unity3d应用
原地址:http://blog.csdn.net/armoonwei/article/details/7032455
目前貌似不支持断点调试,但可以通过日志打印(logcat)来跟踪。 在android SDK中有个adb工具,使用此工具来跟踪运行的android应用:adb logcat 启动logcat,并将设备上运行的android应用的运行时信息全部打印出来。 adb logcat -s Unity 如果只想打印Unity的输出信息,使用此命令。 adb logcat -d > logcat.txt 将打印信息输出为文件。 当然,更直接的做法是在应用中集成自己的调试信息窗口,将如下代码关联到一个gameobject:[csharp] view plaincopy<p>using UnityEngine; using System.Collections;</p><p>public class GuiTextDebug : MonoBehaviour { private float windowPosition = -440.0f; private int positionCheck = 2; private static string windowText = ""; private Vector2 scrollViewVector = Vector2.zero; private GUIStyle debugBoxStyle; private float leftSide = 0.0f; private float debugWidth = 420.0f; public bool debugIsOn = false; public static void debug(string newString) { windowText = newString + "\n" + windowText; UnityEngine.Debug.Log(newString); } void Start() { debugBoxStyle = new GUIStyle(); debugBoxStyle.alignment = TextAnchor.UpperLeft; leftSide = 120; } void OnGUI() { if (debugIsOn) { GUI.depth = 0; GUI.BeginGroup(new Rect(windowPosition, 40.0f, leftSide, 200.0f)); scrollViewVector = GUI.BeginScrollView(new Rect (0, 0.0f, debugWidth, 200.0f), scrollViewVector, new Rect (0.0f, 0.0f, 400.0f, 2000.0f)); GUI.Box(new Rect(0, 0.0f, debugWidth - 20.0f, 2000.0f), windowText, debugBoxStyle); GUI.EndScrollView(); GUI.EndGroup (); if (GUI.Button(new Rect(leftSide, 0.0f,75.0f,40.0f), "调试")) { if (positionCheck == 1) { windowPosition = -440.0f; positionCheck = 2; } else { windowPosition = leftSide; positionCheck = 1; } } if (GUI.Button(new Rect(leftSide + 80f,0.0f,75.0f,40.0f),"清除")) { windowText = ""; } } } } </p>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。