Skip to content

Commit

Permalink
Update the map and add the new packaging script
Browse files Browse the repository at this point in the history
  • Loading branch information
arunoda committed Mar 22, 2021
1 parent 2c03135 commit 7974a79
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,5 @@ OpenLand*/Content/KiteDemo
OpenLand*/Content/StarterContent
*.zip

MyProject
MyProject
ToPackage
Binary file modified OpenLand/Content/OpenLand/Maps/ExampleOpenLandMap.umap
Binary file not shown.
18 changes: 18 additions & 0 deletions package.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
echo "Packaging %1 ..."

rmdir /S /Q ToPackage

@REM --- OpenLand ---
md ToPackage
md ToPackage\OpenLand

md ToPackage\OpenLand\Config
xcopy %1\Config ToPackage\OpenLand\Config /E/H
xcopy %1\OpenLand.uproject ToPackage\OpenLand

md ToPackage\OpenLand\Resources
xcopy %1\Resources ToPackage\OpenLand\Resources /E/H

md ToPackage\OpenLand\Content
md ToPackage\OpenLand\Content\OpenLand
xcopy %1\Content\OpenLand ToPackage\OpenLand\Content\OpenLand /E/H

0 comments on commit 7974a79

Please sign in to comment.