From 108a1f033592fcfd44fa91043c15423b4efd3b21 Mon Sep 17 00:00:00 2001 From: Gloomy <88985879+Gloomy31@users.noreply.github.com> Date: Thu, 17 Apr 2025 05:23:12 -0500 Subject: [PATCH] [Splatoon] Add "Disable Autorotate" Mod (#697) This removes the function call that rotates the camera when the player moves left or right. This makes it much easier to control your aim with both motion and mouse (via Xapfish) since you don't have to fight against the camera when you move. Thanks for @Gloomy31 adding this pack! --- src/Splatoon/Mods/Disable Autorotate/patch_autorotate.asm | 4 ++++ src/Splatoon/Mods/Disable Autorotate/rules.txt | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 src/Splatoon/Mods/Disable Autorotate/patch_autorotate.asm create mode 100644 src/Splatoon/Mods/Disable Autorotate/rules.txt diff --git a/src/Splatoon/Mods/Disable Autorotate/patch_autorotate.asm b/src/Splatoon/Mods/Disable Autorotate/patch_autorotate.asm new file mode 100644 index 00000000..b5d9f21f --- /dev/null +++ b/src/Splatoon/Mods/Disable Autorotate/patch_autorotate.asm @@ -0,0 +1,4 @@ +[begone_autorotate] +moduleMatches = 0xF7A78809, 0x659c782e + +0x02664f20 = nop \ No newline at end of file diff --git a/src/Splatoon/Mods/Disable Autorotate/rules.txt b/src/Splatoon/Mods/Disable Autorotate/rules.txt new file mode 100644 index 00000000..c988a570 --- /dev/null +++ b/src/Splatoon/Mods/Disable Autorotate/rules.txt @@ -0,0 +1,6 @@ +[Definition] +titleIds = 0005000010176900,0005000010176A00,0005000010162B00 +name = Disable Autorotate +path = "Splatoon/Mods/Disable Autorotate" +description = Prevents the camera from automatically rotating when the player moves left or right. +version = 7 \ No newline at end of file