Skip to content

Commit

Permalink
Brighten color
Browse files Browse the repository at this point in the history
  • Loading branch information
LucHeart committed Sep 30, 2023
1 parent a14cbb8 commit 1bf3c22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/LogItem/LogItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void Configure(GenericIni sender, ControlLog log)
EasyOpenVROverlayForUnity.Instance.overlay.ShowOverlay(EasyOpenVROverlayForUnity.Instance
.overlayHandle);
Text.text =
$"{log.Shocker.Name} <color=#e3e3e3>{log.Intensity}<color=#a1a1a1>:</color>{(log.Duration / 1000f).ToString(CultureInfo.InvariantCulture)}</color> <color=#828282>{sender.Name}</color>";
$"{log.Shocker.Name} <color=#e3e3e3>{log.Intensity}<color=#a1a1a1>:</color>{(log.Duration / 1000f).ToString(CultureInfo.InvariantCulture)}</color> <color=#ababab>{sender.Name}</color>";

switch (log.Type)
{
Expand All @@ -35,7 +35,7 @@ public void Configure(GenericIni sender, ControlLog log)
TypeSound.SetActive(true);
break;
case ControlType.Stop:
Text.text = $"{log.Shocker.Name} STOP <color=#828282>{sender.Name}</color>";
Text.text = $"{log.Shocker.Name} STOP <color=#ababab>{sender.Name}</color>";
TypeStop.SetActive(true);
break;
default:
Expand Down

0 comments on commit 1bf3c22

Please sign in to comment.