Application
.unityVersion
Manual
Reference
Scripting
Scripting
>
Runtime Classes
>
Application
Application
.unityVersion
Menu
Overview
Runtime Classes
Attributes
Enumerations
Editor Classes
Enumerations
History
Index
Application
All Members
Class Variables
absoluteURL
backgroundLoadingPriority
dataPath
isEditor
isLoadingLevel
isPlaying
isWebPlayer
levelCount
loadedLevel
loadedLevelName
persistentDataPath
platform
runInBackground
srcValue
streamedBytes
systemLanguage
targetFrameRate
temporaryCachePath
unityVersion
webSecurityEnabled
Class Functions
CancelQuit
CanStreamedLevelBeLoaded
CaptureScreenshot
ExternalCall
ExternalEval
GetStreamProgressForLevel
LoadLevel
LoadLevelAdditive
LoadLevelAdditiveAsync
LoadLevelAsync
OpenURL
Quit
RegisterLogCallback
RegisterLogCallbackThreaded
Delegates
LogCallback
static
var
unityVersion :
string
Description
The version of the Unity runtime used to play the content.
JavaScripts
JavaScript
C#
Boo
print (
"Version of the runtime: "
+
Application.unityVersion
);
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
))