返回介绍

Application.absoluteURL 绝对网址

发布于 2019-12-18 15:37:18 字数 2076 浏览 1043 评论 0 收藏 0

JavaScript => static var absoluteURL: string;
C# => static string absoluteURL;

Description 描述

The absolute path to the web player data file (Read Only).

到web播放器数据文件夹的绝对路径(只读)。

Application.absoluteURL and Application.srcValue allow you to detect if your unityWeb data file was moved to another location or is being linked to. You might want to protect against both to prevent piracy of your data files

Application.absoluteURL和Application.srcValue允许你检测unityWeb数据文件是否被移动或链接接到其他位置。你也许想保护这两者来防止盗用数据文件的行为。

JavaScript:

// This detects if your data files were moved to another server
// 检测你的数据文件是否被移动到其他的服务器
// or are being linked to from somewhere else.
// 或是被链接到其他地方
 
function Start () {
	var isPirated : boolean = false;
 
	if (Application.isWebPlayer) {
		if (Application.srcValue != "game.unity3d")
			isPirated = true;
		if (String.Compare (Application.absoluteURL,	"http://www.website.com/Game/game.unity3d", true) != 0)
			isPirated = true;
 
		if (isPirated)
			print("Pirated web player");
	}
}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Start() {
        bool isPirated = false;
        if (Application.isWebPlayer) {
            if (Application.srcValue != "game.unity3d")
                isPirated = true;
 
            if (String.Compare(Application.absoluteURL, "http://www.website.com/Game/game.unity3d", true) != 0)
                isPirated = true;
 
            if (isPirated)
                print("Pirated web player");
 
        }
    }
}

Application

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

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

发布评论

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