Skip to content

Commit

Permalink
[Crest] Reduce log spam
Browse files Browse the repository at this point in the history
  • Loading branch information
ManlyMarco committed Oct 30, 2021
1 parent e3e0d2c commit 9ebe2b0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/KK_LewdCrestX/LewdCrestXPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,16 @@ private static void LoadAssets()
x.Element("Description").Value,
Bundle));
// ReSharper restore PossibleNullReferenceException

var sb = new System.Text.StringBuilder(300);
sb.Append("Loaded crests:");
foreach (var crestInfo in crestInfos)
{
Logger.LogDebug("Added crest " + crestInfo.Id);
sb.Append(' ');
sb.Append(crestInfo.Id);
CrestInfos.Add(crestInfo.Id, crestInfo);
}
Logger.LogDebug(sb.ToString());

//todo use custom material in the future? might allow glow effects, showing through clothes, adjusting crest location
//var mat = new Material(Shader.Find("Standard"));
Expand Down

0 comments on commit 9ebe2b0

Please sign in to comment.