[RCCVirtualSteeringWheel] Fixes for 2025r180

This commit is contained in:
NotAKidoS 2025-08-19 23:34:09 -05:00
parent a0a859aa86
commit e378a717d3
3 changed files with 9 additions and 9 deletions

View file

@ -18,7 +18,7 @@ using NAK.RCCVirtualSteeringWheel.Properties;
downloadLink: "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/RCCVirtualSteeringWheel" downloadLink: "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/RCCVirtualSteeringWheel"
)] )]
[assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")] [assembly: MelonGame("ChilloutVR", "ChilloutVR")]
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)] [assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: MelonColor(255, 246, 25, 99)] // red-pink [assembly: MelonColor(255, 246, 25, 99)] // red-pink
@ -28,6 +28,6 @@ using NAK.RCCVirtualSteeringWheel.Properties;
namespace NAK.RCCVirtualSteeringWheel.Properties; namespace NAK.RCCVirtualSteeringWheel.Properties;
internal static class AssemblyInfoParams internal static class AssemblyInfoParams
{ {
public const string Version = "1.0.4"; public const string Version = "1.0.6";
public const string Author = "NotAKidoS"; public const string Author = "NotAKidoS";
} }

View file

@ -26,8 +26,8 @@ public class SteeringWheelPickup : Pickupable
public override void OnUseDown(InteractionContext context) { } public override void OnUseDown(InteractionContext context) { }
public override void OnUseUp(InteractionContext context) { } public override void OnUseUp(InteractionContext context) { }
public override void OnFlingTowardsTarget(Vector3 target) { } public override void FlingTowardsTarget(ControllerRay controllerRay) { }
public override void OnGrab(InteractionContext context, Vector3 grabPoint) { public override void OnGrab(InteractionContext context, Vector3 grabPoint) {
if (ControllerRay?.pivotPoint != null) if (ControllerRay?.pivotPoint != null)
root.StartTrackingTransform(ControllerRay.transform); root.StartTrackingTransform(ControllerRay.transform);

View file

@ -1,9 +1,9 @@
{ {
"_id": 248, "_id": 248,
"name": "RCCVirtualSteeringWheel", "name": "RCCVirtualSteeringWheel",
"modversion": "1.0.4", "modversion": "1.0.6",
"gameversion": "2025r179", "gameversion": "2025r180",
"loaderversion": "0.6.1", "loaderversion": "0.7.2",
"modtype": "Mod", "modtype": "Mod",
"author": "NotAKidoS", "author": "NotAKidoS",
"description": "Allows you to physically grab rigged RCC steering wheels in VR to provide steering input. No explicit setup required other than defining the Steering Wheel transform within the RCC component.\n", "description": "Allows you to physically grab rigged RCC steering wheels in VR to provide steering input. No explicit setup required other than defining the Steering Wheel transform within the RCC component.\n",
@ -16,8 +16,8 @@
"requirements": [ "requirements": [
"None" "None"
], ],
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r46/RCCVirtualSteeringWheel.dll", "downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r47/RCCVirtualSteeringWheel.dll",
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/RCCVirtualSteeringWheel/", "sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/RCCVirtualSteeringWheel/",
"changelog": "- Recompiled for 2025r179\n- Fixed generated steering wheel pickup collider not being marked isTrigger\n- Fixed error spam when sitting in a CVRSeat with lockControls, but no RCC component in parent", "changelog": "- Fixes for 2025r180",
"embedcolor": "#f61963" "embedcolor": "#f61963"
} }