Application.ExternalCall(“console.log”,msg)输出在哪里?

时间:2015-08-06 09:48:38

标签: unity3d

我在代码中使用了console.log,但是当我运行它时,我不知道如何找到输出日志。

我尝试打开“View - > developer - > JavaScript Console”,但看不到调试日志。那么日志在哪里?

        if (Application.isWebPlayer)
            Application.ExternalCall("console.log", msg);

1 个答案:

答案 0 :(得分:0)

这是正确的控制台。

您可以尝试将ExternalCall改为alert而不是console.log,也许不支持点符号。如果是这种情况,请尝试登录自定义功能。把它放在你的HTML中:

<script>
function my_console_log(msg_from_unity) {
      console.log(msg_from_unity);
}
</script>