The graphics API version supported by the graphics device (Read Only).
OpenGL
" followed by
version in "major.minor
" format, followed by full version string in square brackets.In case of Direct3D9 API, the returned string will contain "Direct3D 9.0c
" followed
by driver name and version in square brackets.
See Also: SystemInfo.graphicsDeviceName, SystemInfo.graphicsDeviceVendor.// Prints "OpenGL 2.0 [2.0 ATI-1.4.40]" on MacBook Pro / OS X 10.4.8 // Prints "Direct3D 9.0c [atiumdag.dll 7.14.10.471]" on MacBook Pro / Windows Vista print (SystemInfo.graphicsDeviceVersion);
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { print(SystemInfo.graphicsDeviceVersion); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: print(SystemInfo.graphicsDeviceVersion)