La versión del Unity en tiempo de ejecución que está siendo usada para ejecutar el contenido.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print("Version of the runtime: " + Application.unityVersion); } }