Version: 2020.1
言語: 日本語
public static string unityVersion ;

説明

Unity のバージョンを返す。

using UnityEngine;

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