グラフィックデバイスのベンダー(読み取り専用)
これはグラフィックスドライバで報告される、ユーザーのグラフィックカードのベンダーです。
See Also: SystemInfo.graphicsDeviceName, SystemInfo.graphicsDeviceVersion.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.graphicsDeviceVendor); } }