Unity 获取独立显卡数量
获取独立显卡数量

- 导入插件包
 - 打开Demo 运行
 - 看控制台日志
 
    public class GetGraphicCountDemo : MonoBehaviour
    {
        public int count;
        // Start is called before the first frame update
        void Start()
        {
            count = this.GetIndependentGraphicsDeviceCount();
            
        }
         
    }
                