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