[ScrollFlight] bump version

This commit is contained in:
NotAKidoS 2025-04-03 04:00:48 -05:00
parent 75de6d33a0
commit 73d76010bc
2 changed files with 8 additions and 8 deletions

View file

@ -42,8 +42,8 @@ public class ScrollFlightMod : MelonMod
{ {
CVRWorld.GameRulesUpdated += OnApplyMovementSettings; // thank you kafe for using actions CVRWorld.GameRulesUpdated += OnApplyMovementSettings; // thank you kafe for using actions
} }
bool wasFlying = false; private bool wasFlying;
// stole from LucMod :3 // stole from LucMod :3
public override void OnUpdate() public override void OnUpdate()
@ -66,7 +66,7 @@ public class ScrollFlightMod : MelonMod
wasFlying = isFlying; wasFlying = isFlying;
if (!isFlying if (!isFlying
|| Input.GetKey(KeyCode.Mouse2) // scroll zoom || Input.GetKey(KeyCode.Mouse2) // scroll zoom (TODO: Use CVRInputManager.zoom, but requires fixing zoom toggle mode on client)
|| Input.GetKey(KeyCode.LeftControl) // third person / better interact desktop || Input.GetKey(KeyCode.LeftControl) // third person / better interact desktop
|| Cursor.lockState != CursorLockMode.Locked) // unity explorer / in menu || Cursor.lockState != CursorLockMode.Locked) // unity explorer / in menu
return; return;

View file

@ -1,8 +1,8 @@
{ {
"_id": -1, "_id": 219,
"name": "ScrollFlight", "name": "ScrollFlight",
"modversion": "1.0.0", "modversion": "1.0.3",
"gameversion": "2024r175", "gameversion": "2025r179",
"loaderversion": "0.6.1", "loaderversion": "0.6.1",
"modtype": "Mod", "modtype": "Mod",
"author": "NotAKidoS", "author": "NotAKidoS",
@ -16,8 +16,8 @@
"requirements": [ "requirements": [
"None" "None"
], ],
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r34/ScrollFlight.dll", "downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r46/ScrollFlight.dll",
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ScrollFlight/", "sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ScrollFlight/",
"changelog": "- Initial release", "changelog": "- Recompiled for 2025r179",
"embedcolor": "#f61963" "embedcolor": "#f61963"
} }