我刚刚安装了 MonoGame 和 OpenTK 1.0,在 Visual Studio 2012 中我创建了一个类型为“Windows OpenGL Game”的新项目......但是当我运行该项目时,我收到以下错误:
The type initializer for 'OpenTK.Graphics.GraphicsMode' threw an exception.
错误就在这一行上(构造函数,在 base() 上)
public Game1()
: base()
{
graphics = new GraphicsDeviceManager(this);
Content.RootDirectory = "Content";
}
我的笔记本电脑有intel oboard graphics 3000,我认为它支持OpenGL……这是我唯一能指出的。有任何想法吗?