就像主题一样,我可以在 Kindle Fire HD 上的 Unity3D 中调试运行时脚本吗?以前有人做过吗?在 MonoDev “附加到流程”中,我只能看到编辑器。
问问题
738 次
1 回答
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
于 2017-09-24T07:15:23.207 回答