La ruta absoluta al archivo de datos del web player (Read Only).
Application.absoluteURL y Application.srcValue te permiten detectar si tu archivo de datos de Unity Web fue movido a otra ubicación Application.absoluteURL y Application.srcValue te permiten detectar si tu archivo de datos de Unity Web fue movido a otra ubicación
// 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"); } }
no example available in C#