stephensamonte / Unreal-Virtual-University

Learning Unreal Engine by creating a game that takes place at VT
1 stars 0 forks source link

"Failed to load map!" ... PATH.umap appears to be an asset. #20

Closed stephensamonte closed 5 years ago

stephensamonte commented 5 years ago

"Failed to load map!" ... PATH.umap appears to be an asset.

Related Issue Discussion:

Most likely the issue:

Problem solved. Some of the data for the .umap was being lost due to interference of Git LFS when cloning. 

Possible solution: Don't track .umaps with LFS

stephensamonte commented 5 years ago

To restore files from LFS to git:

git lfs untrack '<file-type>'
git rm --cached '<file-type>'
git add '<file-type>'
git commit -m "restore '<file-type>' to git from lfs"

the above was from: https://stackoverflow.com/questions/35011366/move-git-lfs-tracked-files-under-regular-git/41961459