Skip to content

Commit

Permalink
Tweaked error margin on light probe counter
Browse files Browse the repository at this point in the history
  • Loading branch information
oneVR committed Apr 27, 2020
1 parent 43ec6a7 commit 47eac90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/Editor/WorldDebugger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ void CheckBakeryLightLayer(GameObject obj)
}
else
{
if ((bakedProbes - (0.99 * probeCounter)) < 0)
if ((bakedProbes - (0.9 * probeCounter)) < 0)
{
lightingMessages.AddMessage(new DebuggerMessage(lightProbeCountNotBaked, MessageType.Error).setVariable(probeCounter.ToString("n0")).setVariable2((probeCounter - bakedProbes).ToString("n0")));
}
Expand Down

0 comments on commit 47eac90

Please sign in to comment.