2014-03-12 87 views
0

我正在做一個自上而下的Flash遊戲,我正在使用碰撞檢測工具來處理碰撞。當我嘗試運行我的比賽,這給了我這個錯誤消息在編譯器錯誤對話框:碰撞檢測工具包錯誤

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

什麼是錯誤的,我應該怎麼做才能解決這個問題?

回答

0

這意味着您有一個package聲明,它與.as文件的位置不匹配。例如,如果您有以下內容的。至於文件:

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

它需要的文件夾中SOURCE_PATH/my/sub/pack/name/被發現。請注意,默認SOURCE_PATH與您的FLA是同一個目錄。