与主题一样,我可以在Kindle Fire HD上的Unity3D中运行时脚本调试吗?有人这么做过吗?在MonoDev"附加到Process我只能看到Editor。
答案 0 :(得分:0)
使用Debug.Log();
函数进行调试。如果你需要在Kindle上运行时调试你必须创建GUI脚本来将文本渲染到屏幕上。
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
void OnGUI() {
GUI.Label(new Rect(10, 10, 100, 20), "Hello World!");
}
}
有关详细信息,请参阅此Unity文档页面 - https://docs.unity3d.com/ScriptReference/GUI.Label.html