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