Evaluates script snippet in the containing web page (Web Player only).
script
in the web page that contains
the web player.// Navigates to the previous page Application.ExternalEval ("history.back()");
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { Application.ExternalEval("history.back()"); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: Application.ExternalEval('history.back()')