Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


unityVersion

The version of the Unity runtime used to play the content.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public static string unityVersion { get; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { print("Version of the runtime: " + Application.unityVersion); }}