碰撞检测套件包错误

时间:2014-03-12 23:50:54

标签: actionscript-3 flash compiler-errors

我在闪光灯中进行自上而下的游戏,并使用碰撞检测套件来处理碰撞。当我尝试运行我的游戏时,它在编译器错误框中给我这个错误消息:

  

5001: The name of package 'com.coreyoneil.collision' does not reflect the location of this file. Please change the package definition's name inside this file, or move the file. /Users/student/Google Drive/School/Game for Mr Crawford/CollisionGroup.as

出了什么问题,我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:0)

这意味着您的package声明与.as文件的位置不匹配。例如,如果您的.as文件包含以下内容:

package my.sub.pack.name
{
    //
}

需要在SOURCE_PATH/my/sub/pack/name/文件夹中找到。请注意,默认SOURCE_PATH与FLA的目录相同。