Fix crash with emscripten version during story scenes. Fix inproper Blacksmith equipment displays for crafting menu (chapter check missing, wrong enhancement level checks). Fix Blacksmith trigger not unlocking on the right node. Fix Chapter 2 trigger. Fix emscripten build scripts. Release Version 7848.
parent
93e5921e57
commit
aa4d35d754
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,22 @@ |
||||
clear |
||||
rm -R bin |
||||
mkdir bin |
||||
mkdir bin/assets |
||||
$ErrorActionPreference = "Stop" |
||||
cp -R 'Adventures in Lestoria/buildtemplate.html' bin/index.html |
||||
cp -R "Adventures in Lestoria/assets/Campaigns" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/config" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/maps" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/backgrounds" bin/assets |
||||
rm -R bin/assets/backgrounds/commercial_assets |
||||
rm -R bin/assets/maps/commercial_assets |
||||
cp -R "Adventures in Lestoria/assets/monsters" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/music" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/npcs" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/sounds" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/themes" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/gamepack.pak" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/*.ttf" bin/assets |
||||
|
||||
emcmake cmake -DCMAKE_BUILD_TYPE=Release . |
||||
cmake --build . -j 20 |
@ -1,3 +1,22 @@ |
||||
clear |
||||
rm -R bin |
||||
mkdir bin |
||||
mkdir bin/assets |
||||
$ErrorActionPreference = "Stop" |
||||
cp -R 'Adventures in Lestoria/buildtemplate.html' bin/index.html |
||||
cp -R "Adventures in Lestoria/assets/Campaigns" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/config" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/maps" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/backgrounds" bin/assets |
||||
rm -R bin/assets/backgrounds/commercial_assets |
||||
rm -R bin/assets/maps/commercial_assets |
||||
cp -R "Adventures in Lestoria/assets/monsters" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/music" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/npcs" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/sounds" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/gamepack.pak" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/themes" bin/assets |
||||
cp -R "Adventures in Lestoria/assets/*.ttf" bin/assets |
||||
|
||||
emcmake cmake -DCMAKE_BUILD_TYPE=Debug -D_DEBUG=1 . |
||||
cmake --build . -j 20 |
Binary file not shown.
Loading…
Reference in new issue