Version: 2021.2
言語: 日本語
public static string graphicsDeviceVendor ;

説明

グラフィックデバイスのベンダー(読み取り専用)

これはグラフィックスドライバで報告される、ユーザーのグラフィックカードのベンダーです。

See Also: SystemInfo.graphicsDeviceName, SystemInfo.graphicsDeviceVersion.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Prints using the following format - "ATI Technologies Inc." on MacBook Pro running Mac OS X 10.4.8 print(SystemInfo.graphicsDeviceVendor); } }