2022-03-20 18:09:25 +00:00
|
|
|
set -eu
|
|
|
|
|
|
|
|
# Obviously adjust these based on your paths
|
2022-05-22 00:57:41 +00:00
|
|
|
RYUJINX_APPLICATION_PATH="/mnt/c/Users/Jdsam/Downloads/ryujinx-1.1.119-win_x64/publish/Ryujinx.exe"
|
2022-03-20 18:09:25 +00:00
|
|
|
SMASH_APPLICATION_PATH="C:\Users\Jdsam\Downloads\Super Smash Bros. Ultimate (World) (En,Ja,Fr,De,Es,It,Nl,Zh-Hant,Zh-Hans,Ko,Ru)\Super Smash Bros. Ultimate (World) (En,Ja,Fr,De,Es,It,Nl,Zh-Hant,Zh-Hans,Ko,Ru).xci"
|
|
|
|
RYUJINX_SMASH_SKYLINE_PLUGINS_PATH="/mnt/c/Users/Jdsam/AppData/Roaming/Ryujinx/mods/contents/01006a800016e000/romfs/skyline/plugins"
|
|
|
|
|
|
|
|
# Build with release feature
|
2023-08-21 19:32:49 +00:00
|
|
|
RUSTFLAGS=-g cargo skyline build --release --features layout_arc_from_file
|
2022-03-20 18:09:25 +00:00
|
|
|
|
|
|
|
# Copy over to plugins path
|
|
|
|
cp target/aarch64-skyline-switch/release/libtraining_modpack.nro $RYUJINX_SMASH_SKYLINE_PLUGINS_PATH
|
|
|
|
|
|
|
|
# Run Ryujinx
|
|
|
|
$RYUJINX_APPLICATION_PATH "${SMASH_APPLICATION_PATH}"
|
|
|
|
|
|
|
|
# Here, you can run `cargo skyline set-ip {IP address...}; cargo skyline listen` for logs
|