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;

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); } }