欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Debug显示设置

程序员文章站 2022-05-08 22:17:51
...

常用的debug:

    Debug.Log(targetPos);      //普通打印输出
    print(targetPos);          //普通打印输出
    Debug.LogError(targetPos); //红色字体打印输出
    throw new UnityException(targetPos.ToString());  //抛出异常后续代码不执行。打印字体为红色
    print("123");              //不执行

普通显示用debug.log() 醒目用debug.logError();

相关标签: debug