在 Unity3D 中导入 LibGaze dll 文件

Import LibGaze dll file in Unity3D

我想在Unity中导入LibGaze的dll文件

我把dll放到了"Assets/Plugins"文件夹里。我设法将该 dll 添加为单声道编辑器中的引用,命名空间和 classes 似乎被单声道编辑器毫无问题地识别(当我在 dll 中键入 class 名称时,它们在列表中自动完成)。

但是当我回到 unity main window 时,它说:"error CS0246: The type or namespace name `libGaze' could not be found. Are you missing a using directive or an assembly reference?" 当我双击这个错误消息时,它指向我在脚本中使用 LibGaze 库的语句。

发现这个问题似乎可以解释我的问题:Getting "type or namespace name could not be found" but everything seems ok?

由于unity只支持.Net 2.0,dll文件是用高版本.Net编译的,unity无法正确导入

用新的unity5测试,单声道编辑器仍然只支持.Net 2.0