Smooth combat mode rotation (Make Flashlights Awesome) (#5163)

* its so peak
This commit is contained in:
KOTOB 2026-01-08 09:11:25 -08:00 committed by GitHub
parent 453aab5cd7
commit 3ba0c9753e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ public sealed partial class MouseRotatorComponent : Component
/// How much the desired angle needs to change before a predictive event is sent
/// </summary>
[DataField, AutoNetworkedField]
public Angle AngleTolerance = Angle.FromDegrees(20.0);
public Angle AngleTolerance = Angle.FromDegrees(5.0); // DeltaV - smooth flashlights, was 20
/// <summary>
/// The angle that will be lerped to
@ -37,7 +37,7 @@ public sealed partial class MouseRotatorComponent : Component
/// like turrets or ship guns, which have finer range of movement.
/// </summary>
[DataField, AutoNetworkedField]
public bool Simple4DirMode = true;
public bool Simple4DirMode; // DeltaV - smooth flashlights, was true
}
/// <summary>