Move many mods to Deprecated folder, fix spelling

This commit is contained in:
NotAKidoS 2025-04-03 02:57:35 -05:00
parent 5e822cec8d
commit 0042590aa6
539 changed files with 7475 additions and 3120 deletions

View file

@ -39,6 +39,10 @@ public class SmootherRayMod : MelonMod
Category.CreateEntry("Small Angle Threshold (6f)", 6f,
description: "Angle difference to consider a 'small' movement. The less shaky your hands are, the lower you probably want to set this. This is probably the primary value you want to tweak. Use the slider to adjust the threshold angle. Range: 4 to 15.");
public static readonly MelonPreferences_Entry<bool> EntrySmoothWhenHoldingPickup =
Category.CreateEntry("Smooth When Holding Pickup", false,
description: "Enable or disable smoothing when holding a pickup.");
#endregion Melon Preferences
#region Melon Events

View file

@ -28,6 +28,6 @@ namespace NAK.SmootherRay.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.5";
public const string Version = "1.0.6";
public const string Author = "NotAKidoS";
}

View file

@ -227,6 +227,10 @@ public class SmootherRayer : MonoBehaviour
}
}
if (SmootherRayMod.EntrySmoothWhenHoldingPickup.Value
&& ray.grabbedObject)
canSmoothRay = true;
return canSmoothRay;
}