Version: 2017.1

SystemInfo.graphicsDeviceVendor

Cambiar al Manual
public static string graphicsDeviceVendor ;

Descripción

The vendor of the graphics device (Read Only).

Este es el ID de dispositivo PCI de la tarjeta gráfica del usuario. Junto con SystemInfo.graphicsDeviceVendorID,

See Also: SystemInfo.graphicsDeviceName, SystemInfo.graphicsDeviceVersion.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.graphicsDeviceVendor); } }