Application.unityVersionstatic var unityVersion : StringDescriptionThe version of the Unity runtime used to play the content.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { print("Version of the runtime: " + Application.unityVersion); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): print(('Version of the runtime: ' + Application.unityVersion)) |
