error CS0246: The type or namespace name ‘MoveType‘ could not be found

在vs中编辑脚本时没有提示错误 但是在unity中提示了这样的错误

error CS0246: The type or namespace name 'MoveType' could not be found (are you missing a using directive or an assembly reference?)

几经周折后发现 脚本MoveType与主脚本放在了不同的文件夹下 导致它无法引用 ,将MoveType移到与该脚本一致的的文件夹下就可以成功解决。

你可能感兴趣的:(c语言,visual,studio,编辑器)