Version: 2017.3
public static string unityVersion ;

설명

The version of the Unity runtime used to play the content.

using UnityEngine;
using System.Collections;

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