Web Player でプレイしているか確認します(読み取り専用)
ゲームが WebPlayer から実行されている場合は true を返します。
if (Application.isWebPlayer) { print("We are running this from inside of the web player!"); }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { if (Application.isWebPlayer) print("We are running this from inside of the web player!"); } }