Webページに含まれるスクリプトスニペットを評価します(Eval関数) (Web Player のみ)
これはWebPlayerが含まれるWebページ内のJavascriptスニペットの script/
を実行します。
// Navigates to the previous page Application.ExternalEval ("history.back()");
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { Application.ExternalEval("history.back()"); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: Application.ExternalEval('history.back()')