Version: 2017.1
public static string absoluteURL ;

Descripción

La ruta absoluta al archivo de datos del web player (Read Only).

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.

using UnityEngine;
using System.Collections;

public class ExampleScript : MonoBehaviour { public bool isPirated = false;

void Start() { // This detects if your data files were moved to another server // or are being linked to from somewhere else. 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"); } } }

Note: The web player is not supported from 5.4.0 onwards.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961