From 73d76010bc2f7d5d8bb0056c9d3368a2cbc89502 Mon Sep 17 00:00:00 2001 From: NotAKidoS <37721153+NotAKidoS@users.noreply.github.com> Date: Thu, 3 Apr 2025 04:00:48 -0500 Subject: [PATCH] [ScrollFlight] bump version --- ScrollFlight/Main.cs | 6 +++--- ScrollFlight/format.json | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ScrollFlight/Main.cs b/ScrollFlight/Main.cs index 98fdabd..f2180b8 100644 --- a/ScrollFlight/Main.cs +++ b/ScrollFlight/Main.cs @@ -42,8 +42,8 @@ public class ScrollFlightMod : MelonMod { CVRWorld.GameRulesUpdated += OnApplyMovementSettings; // thank you kafe for using actions } - - bool wasFlying = false; + + private bool wasFlying; // stole from LucMod :3 public override void OnUpdate() @@ -66,7 +66,7 @@ public class ScrollFlightMod : MelonMod wasFlying = 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 || Cursor.lockState != CursorLockMode.Locked) // unity explorer / in menu return; diff --git a/ScrollFlight/format.json b/ScrollFlight/format.json index 3981ee1..ddcf1de 100644 --- a/ScrollFlight/format.json +++ b/ScrollFlight/format.json @@ -1,8 +1,8 @@ { - "_id": -1, + "_id": 219, "name": "ScrollFlight", - "modversion": "1.0.0", - "gameversion": "2024r175", + "modversion": "1.0.3", + "gameversion": "2025r179", "loaderversion": "0.6.1", "modtype": "Mod", "author": "NotAKidoS", @@ -16,8 +16,8 @@ "requirements": [ "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/", - "changelog": "- Initial release", + "changelog": "- Recompiled for 2025r179", "embedcolor": "#f61963" } \ No newline at end of file