Skip to content

Commit

Permalink
Swapped settings for more logical flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Exomanz committed Jul 14, 2024
1 parent e42316f commit 7b3d89a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions UITweaks/Config/PositionConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ public class PositionConfig : UITweaksConfigBase
public virtual bool HideFirstPlaceAnimation { get; set; } = false;

/// <summary>
/// If set to <see langword="true"/>, the player count panel will use a static color regardless of your position.
/// Controls the rainbow effect of the <i>dynamic</i> first place text.
/// </summary>
public virtual bool UseStaticColorForStaticPanel { get; set; } = false;
public virtual bool RainbowOnFirstPlace { get; set; } = false;

/// <summary>
/// Controls the rainbow effect of the <i>dynamic</i> first place text.
/// If set to <see langword="true"/>, the player count panel will use a static color regardless of your position.
/// </summary>
public virtual bool RainbowOnFirstPlace { get; set; } = false;
public virtual bool UseStaticColorForStaticPanel { get; set; } = false;

/// <summary>
/// The <see cref="Color"/> of the player count section of the Position Panel.
Expand Down

0 comments on commit 7b3d89a

Please sign in to comment.