返回介绍

Debug.isDebugBuild 是否调试版本

发布于 2019-12-18 15:37:39 字数 1267 浏览 1270 评论 0 收藏 0

JavaScript => public static var isDebugBuild: bool;
C# =>public static bool isDebugBuild;

Description 描述

In the Build Settings dialog there is a check box called “Development Build”.
在Build Settings对话框中有一个叫做“Development Build”复选框。

If it is checked isDebugBuild will be true. In the editor isDebugBuild always returns true. It is recommended to remove all calls to Debug.Log when deploying a game, this way you can easily deploy beta builds with debug prints and final builds without.

如果是检查isDebugBuild将是正确的。在编辑器中isDebugBuild总是返回true。当开发一个游戏时建议删除所有的调用调试,这样你可以很容易的部署测试构建调试打印并最终构建。

JavaScript:

// Log some debug information only if this is a debug build
	if (Debug.isDebugBuild) {
		Debug.Log ("This is a debug build!");
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Example() {
        if (Debug.isDebugBuild)
            Debug.Log("This is a debug build!");
 
    }
}

debug

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文