diff options
| author | 2026-08-09 21:36:12 -0400 | |
|---|---|---|
| committer | 2026-08-09 21:36:12 -0400 | |
| commit | cb082b12b7d61942c99cccf8c64127304c62cec4 (patch) | |
| tree | 85bf717738dc03e5ec666dd0d06c06ae0731d41d /Scripts/copy_libs.sh | |
| parent | d8fda32bb62dbc02e4e881e5e5a2b865aa862493 (diff) | |
| download | NewCamera-cb082b12b7d61942c99cccf8c64127304c62cec4.tar.gz NewCamera-cb082b12b7d61942c99cccf8c64127304c62cec4.tar.bz2 NewCamera-cb082b12b7d61942c99cccf8c64127304c62cec4.zip | |
Joints fixes, expose face joints
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Scripts/copy_libs.sh')
| -rwxr-xr-x | Scripts/copy_libs.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Scripts/copy_libs.sh b/Scripts/copy_libs.sh index e5f97d3..f8b9172 100755 --- a/Scripts/copy_libs.sh +++ b/Scripts/copy_libs.sh @@ -5,9 +5,13 @@ BASE_PATH="$1" GAME_PATH="/mnt/ssd/SteamLibrary/steamapps/common/Monster Hunter World/" -rsync -av "$BASE_PATH/SharpPluginLoader-fork/x64/Release/mhw-cs-plugin-loader.dll" "$GAME_PATH/ucrtbase.dll" -rsync -av "$BASE_PATH/SharpPluginLoader-fork/SharpPluginLoader.Core/bin/Release/net8.0/SharpPluginLoader.Core.dll" "$GAME_PATH/nativePC/plugins/CSharp/Loader/" -rsync -av "$BASE_PATH/SharpPluginLoader-fork/SharpPluginLoader.Bootstrapper/bin/Release/net8.0/SharpPluginLoader.Bootstrapper.dll" "$GAME_PATH/nativePC/plugins/CSharp/Loader/" +BUILD_TYPE="Release" + +rsync -av "$BASE_PATH/SharpPluginLoader-fork/x64/$BUILD_TYPE/mhw-cs-plugin-loader.dll" "$GAME_PATH/ucrtbase.dll" +#rsync -av "$BASE_PATH/SharpPluginLoader-fork/x64/$BUILD_TYPE/mhw-cs-plugin-loader.dll" "$GAME_PATH/winmm.dll" +#rsync -av "$BASE_PATH/SharpPluginLoader-fork/x64/$BUILD_TYPE/SPLLauncher.exe" "$GAME_PATH/SPLLauncher.exe" +rsync -av "$BASE_PATH/SharpPluginLoader-fork/SharpPluginLoader.Core/bin/$BUILD_TYPE/net8.0/SharpPluginLoader.Core.dll" "$GAME_PATH/nativePC/plugins/CSharp/Loader/" +rsync -av "$BASE_PATH/SharpPluginLoader-fork/SharpPluginLoader.Bootstrapper/bin/$BUILD_TYPE/net8.0/SharpPluginLoader.Bootstrapper.dll" "$GAME_PATH/nativePC/plugins/CSharp/Loader/" rsync -av "$BASE_PATH/SharpPluginLoader-fork/Assets/Default.bin" "$GAME_PATH/nativePC/plugins/CSharp/Loader/" rsync -av "$BASE_PATH/NewCamera/bin/Release/net8.0/NewCamera.dll" "$GAME_PATH/nativePC/plugins/CSharp/" |