图形设备的供应商(只读)。
此为用户显卡的供应商,由图形驱动程序报告。
另请参阅:SystemInfo.graphicsDeviceName、SystemInfo.graphicsDeviceVersion。
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.graphicsDeviceVendor); } }