Web Player ファイルの絶対パス(読み取り専用)
Application.absoluteURL と Application.srcValue は WebPlayer のデータが移動されたり他のリンクになってリ待ったときに検知することが可能です。 データファイルの著作権侵害から守るためにもお勧めします。
// 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#