Unity3d Tutorial: Application Class Part4 - unityVersion

Unity3D 2012. 6. 13. 14:31
반응형

http://file:///Applications/Unity/Documentation/ScriptReference/Application-unityVersion.html

Application.unityVersion

static var unityVersion : String

Description

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

C#
using UnityEngine;
using System.Collections;

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

반응형
: