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